export declare class Sender {
    email: string;
    name?: string;
    constructor(email: string, name?: string);
}
