import { NonGraphicalObject } from './NonGraphicalObject.js'; import { ObjectType } from '../Types/ObjectType.js'; import { CellStyle } from '../Entities/TableEntity.js'; import { TableFlowDirectionType } from './TableFlowDirectionType.js'; export declare class TableStyle extends NonGraphicalObject { static get default_(): TableStyle; cellStyles: CellStyle[]; dataCellStyle: CellStyle; description: string; flags: number; flowDirection: TableFlowDirectionType; headerCellStyle: CellStyle; horizontalCellMargin: number; get objectName(): string; get objectType(): ObjectType; get subclassMarker(): string; suppressHeaderRow: boolean; suppressTitle: boolean; tableCellStyle: CellStyle; titleCellStyle: CellStyle; verticalCellMargin: number; static readonly defaultName = "Standard"; constructor(name?: string); } export { TableFlowDirectionType } from './TableFlowDirectionType.js'; //# sourceMappingURL=TableStyle.d.ts.map