/** Responder of account */
export interface ResponderAccount {
    /** Name of account */
    account: string;
    /** Content of responder */
    content: string;
    /** If true, emails will be copy to emailToCopy address */
    copy: boolean;
    /** Account where copy emails */
    copyTo?: string;
    /** Date of start responder */
    from?: string;
    /** Date of end responder */
    to?: string;
}
//# sourceMappingURL=ResponderAccount.d.ts.map