import XNode from "@web-atoms/core/dist/core/XNode"; import IEmailElementStyle from "../style/IEmailElementStyle"; export interface IButton extends IEmailElementStyle { href: string; text?: string; target?: "_blank" | "_top"; } export default function Button({ href, text, target, style, ...a }: IButton, ...children: XNode[]): XNode; //# sourceMappingURL=Button.d.ts.map