import XNode from "@web-atoms/core/dist/core/XNode"; import IEmailElementStyle from "../style/IEmailElementStyle"; export interface IITem extends IEmailElementStyle { colSpan?: string; rowSpan?: string; } export default function Cell({ rowSpan, colSpan, style, ...a }: IITem, ...children: XNode[]): XNode; //# sourceMappingURL=Cell.d.ts.map