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