export declare const TableCellAlignments: { readonly left: "left"; readonly center: "center"; readonly right: "right"; }; export type TableCellAlignments = (typeof TableCellAlignments)[keyof typeof TableCellAlignments]; export declare const TableRowColors: { readonly default: "default"; readonly success: "success"; readonly danger: "danger"; readonly temp: "temp"; readonly white: "white"; }; export type TableRowColors = (typeof TableRowColors)[keyof typeof TableRowColors]; export declare const TableCellColors: { readonly default: "default"; readonly success: "success"; readonly danger: "danger"; readonly temp: "temp"; readonly white: "white"; }; export type TableCellColors = (typeof TableCellColors)[keyof typeof TableCellColors]; export declare const TableSplitters: { readonly horizontal: "horizontal"; readonly vertical: "vertical"; readonly all: "all"; readonly partial: "partial"; readonly none: "none"; }; export type TableSplitters = (typeof TableSplitters)[keyof typeof TableSplitters]; export declare const TableLayout: { readonly fixed: "fixed"; readonly auto: "auto"; readonly inherit: "inherit"; }; export type TableLayout = (typeof TableLayout)[keyof typeof TableLayout];