import XNode from "@web-atoms/core/dist/core/XNode"; import IEmailElementStyle from "../style/IEmailElementStyle"; export interface IBox extends IEmailElementStyle { width: string; height: string; margin?: string; padding?: string; } export default function FloatingBox({ width, height, margin, padding, style, ...a }: IBox, ...children: XNode[]): XNode; //# sourceMappingURL=FloatingBox.d.ts.map