import XNode from "@web-atoms/core/dist/core/XNode"; import IEmailElementStyle from "../style/IEmailElementStyle"; export interface IEmailModelParameter extends IEmailElementStyle { maxWidth?: string; emailBox?: boolean; unsubscribeLink?: string; poweredBy?: string; poweredByLink?: string; refID?: string; bodyStyle?: IEmailElementStyle; } export default function Email({ maxWidth, emailBox, unsubscribeLink, poweredBy, poweredByLink, style, bodyStyle, refID, ...a }: IEmailModelParameter, ...children: XNode[]): XNode; //# sourceMappingURL=Email.d.ts.map