import * as LayoutFoundation from "../primitives/layout-foundation.js"; import * as TableCellStyle from "./table-cell-style.js"; import * as Position from "./position.js"; export type TableAlignment = "Left" | "Center" | "Right"; export interface TableStyle { readonly type: "TableStyle"; readonly margins: LayoutFoundation.LayoutFoundation; readonly position: Position.Position; readonly alignment?: TableAlignment; readonly cellStyle: TableCellStyle.TableCellStyle; } export interface TableStyleProps { readonly position?: Position.Position; readonly margins?: LayoutFoundation.LayoutFoundation; readonly alignment?: TableAlignment; readonly cellStyle?: TableCellStyle.TableCellStyle; } export declare function create(props?: TableStyleProps): TableStyle; export declare function overrideWith(overrider: TableStyle, toOverride: TableStyle): TableStyle; //# sourceMappingURL=table-style.d.ts.map