export declare enum SenderType {
    MAIL = "mail",
    SMS = "sms",
    ALL = "all"
}
export declare class ReplyCooperationDto {
    answer: string;
    senderType: SenderType;
}
