export declare class EmailMessageV1 {
    from?: string;
    cc?: string;
    bcc?: string;
    to: string;
    reply_to?: string;
    subject?: any;
    text?: any;
    html?: any;
}
