/** Responder */
export interface Responder {
    /** Name of account */
    account: string;
    /** Content of responder */
    content: string;
    /** If false, emails will be dropped. If true and copyTo field is empty, emails will be delivered to your mailbox. If true and copyTo is set with an address, emails will be delivered to this address */
    copy: boolean;
    /** Account where copy emails */
    copyTo?: string;
    /** Date of start responder */
    from?: string;
    /** Date of end responder */
    to?: string;
}
//# sourceMappingURL=Responder.d.ts.map