import { Resources } from "../resources.js"; import * as TableRow from "../table/table-row.js"; import * as TableStyle from "../styles/table-style.js"; export declare const sectionType = "Table"; export type Table = Resources & { readonly type: typeof sectionType; readonly columnWidths: ReadonlyArray; readonly styleName: string; readonly style: TableStyle.TableStyle; readonly headerRows: ReadonlyArray; readonly children: ReadonlyArray; }; export type TableProps = Resources & { readonly columnWidths: ReadonlyArray; readonly styleName?: string; readonly headerRows?: ReadonlyArray; readonly style?: TableStyle.TableStyle; }; export declare function create(props: TableProps, children?: ReadonlyArray): Table; //# sourceMappingURL=table.d.ts.map