export type ValuesOf = T[keyof T]; export declare const DataGridCellSortStates: { readonly none: "none"; readonly ascending: "ascending"; readonly descending: "descending"; readonly other: "other"; }; export type DataGridCellSortStates = ValuesOf; export declare const GenerateHeaderOptions: { readonly none: "none"; readonly default: "default"; readonly sticky: "sticky"; }; export type GenerateHeaderOptions = ValuesOf; export declare const DataGridCellTypes: { readonly default: "default"; readonly columnHeader: "columnheader"; readonly rowHeader: "rowheader"; }; export type DataGridCellTypes = ValuesOf; export declare const DataGridRowTypes: { readonly default: "default"; readonly header: "header"; readonly stickyHeader: "sticky-header"; }; export type DataGridRowTypes = ValuesOf; export declare const DataGridCellTypeClass: { readonly columnheader: "column-header"; readonly default: ""; readonly rowheader: "row-header"; }; export type DataGridCellTypeClass = ValuesOf; export declare const DataGridCellRole: { readonly columnheader: "columnheader"; readonly rowheader: "rowheader"; readonly default: "gridcell"; }; export type DataGridCellRole = ValuesOf;