export declare type MailTemplateProps = { html?: boolean; logoUrl?: string; title: string; body: string; action?: { label: string; href: string; }; tagLine?: string; links?: Array<{ href: string; label: string; }>; }; export declare const MailTemplate: ({ html, logoUrl, title, body, tagLine, links, action, }: MailTemplateProps) => string;