import type { Allignment } from './TagHelper'; export type ColumnConfig = { width: number; text?: string | null | undefined; allignment?: Allignment | null | undefined; underline?: boolean | undefined; bold?: boolean | undefined; spacer?: boolean | undefined; }; export type RowConfig = ColumnConfig[]; export type TableConfig = RowConfig[]; export type RowData = Array; export type TableData = RowData[]; export type AutoColumnConfig = Omit; export type AutoRowConfig = AutoColumnConfig[]; //# sourceMappingURL=ColumnConfig.d.ts.map