import * as SectionElement from "../section-elements/section-element.js"; import * as TableCellStyle from "../styles/table-cell-style.js"; export interface TableCell { readonly styleName: string; readonly columnSpan: number; readonly rowSpan: number; readonly style?: TableCellStyle.TableCellStyle; readonly children: ReadonlyArray; readonly dummy?: boolean; } export interface TableCellProps { readonly styleName?: string; readonly columnSpan?: number; readonly rowSpan?: number; readonly style?: TableCellStyle.TableCellStyle; readonly dummy?: boolean; } export declare function create(props?: TableCellProps, children?: ReadonlyArray): TableCell; //# sourceMappingURL=table-cell.d.ts.map