import XNode from "@web-atoms/core/dist/core/XNode"; import IEmailElementStyle from "../style/IEmailElementStyle"; export interface IBox extends IEmailElementStyle { borderTop?: string; borderBottom?: string; borderLeft?: string; borderRight?: string; border?: string; radius?: string | number; align?: "center" | "left" | "right" | "justify"; padding?: string; margin?: string; } export default function TextBox({ style, border, borderBottom, borderLeft, borderRight, borderTop, radius, align, margin, padding, ...a }: IBox, ...children: XNode[]): XNode; //# sourceMappingURL=TextBox.d.ts.map