export declare const SIZES: { readonly small: { readonly rowHeight: 41; readonly cell: { readonly 'padding-block': "8px"; readonly 'padding-inline': "16px"; }; readonly editorCell: { readonly 'padding-block': "0px"; readonly 'padding-inline': "0px"; }; readonly input: "xs"; readonly icon: "xs"; readonly combobox: "xs"; readonly checkboxOfCombobox: "s"; readonly switch: "s"; readonly font: () => { fontFamily: string; fontSize: string; fontStyle: string; fontWeight: string; letterSpacing: string; lineHeight: string; }; }; readonly medium: { readonly rowHeight: 49; readonly cell: { readonly 'padding-block': "12px"; readonly 'padding-inline': "16px"; }; readonly editorCell: { readonly 'padding-block': "0px"; readonly 'padding-inline': "0px"; }; readonly input: "s"; readonly icon: "s"; readonly combobox: "s"; readonly checkboxOfCombobox: "m"; readonly switch: "s"; readonly font: () => { fontFamily: string; fontSize: string; fontStyle: string; fontWeight: string; letterSpacing: string; lineHeight: string; }; }; readonly big: { readonly rowHeight: 57; readonly cell: { readonly 'padding-block': "16px"; readonly 'padding-inline': "16px"; }; readonly editorCell: { readonly 'padding-block': "0px"; readonly 'padding-inline': "0px"; }; readonly input: "s"; readonly icon: "m"; readonly combobox: "s"; readonly checkboxOfCombobox: "l"; readonly switch: "l"; readonly font: () => { fontFamily: string; fontSize: string; fontStyle: string; fontWeight: string; letterSpacing: string; lineHeight: string; }; }; }; export type SIZE = keyof typeof SIZES; export declare const customColorTokensKeys: { headerColor: "--headerColor"; editableCellColor: "--editableCellColor"; editableCellHoverColor: "--editableCellHoverColor"; editedSuccessfullyCellColor: "--editedSuccessfullyCellColor"; editedSuccessfullyCellHoverColor: "--editedSuccessfullyCellHoverColor"; }, customColorTokens: { headerColor: "var(--headerColor)"; editableCellColor: "var(--editableCellColor)"; editableCellHoverColor: "var(--editableCellHoverColor)"; editedSuccessfullyCellColor: "var(--editedSuccessfullyCellColor)"; editedSuccessfullyCellHoverColor: "var(--editedSuccessfullyCellHoverColor)"; }, customColorGlobalVars: (theme: import('..').ActiveTheme) => string; export declare const CUSTOM_TOKENS_KEYS: { readonly zIndexCell: "--zIndexCell"; readonly headerColor: "--headerColor"; readonly editableCellColor: "--editableCellColor"; readonly editableCellHoverColor: "--editableCellHoverColor"; readonly editedSuccessfullyCellColor: "--editedSuccessfullyCellColor"; readonly editedSuccessfullyCellHoverColor: "--editedSuccessfullyCellHoverColor"; }; export declare const CUSTOM_TOKENS: { readonly zIndexCell: "var(--zIndexCell)"; readonly headerColor: "var(--headerColor)"; readonly editableCellColor: "var(--editableCellColor)"; readonly editableCellHoverColor: "var(--editableCellHoverColor)"; readonly editedSuccessfullyCellColor: "var(--editedSuccessfullyCellColor)"; readonly editedSuccessfullyCellHoverColor: "var(--editedSuccessfullyCellHoverColor)"; }; export declare const COLORS: { readonly headerColor: "var(--headerColor)"; readonly rowHoverColor: "var(--surface-solid-primary, #13181B)"; readonly textColor: "var(--text-primary, #F2F5F8F5)"; readonly headerTextColor: "var(--text-secondary, #D5DFE69E)"; readonly selectCellColor: "var(--text-accent, #199AF0)"; readonly editableCellColor: "var(--editableCellColor)"; readonly editableCellHoverColor: "var(--editableCellHoverColor)"; readonly editedSuccessfullyCellColor: "var(--editedSuccessfullyCellColor)"; readonly editedSuccessfullyCellHoverColor: "var(--editedSuccessfullyCellHoverColor)"; readonly white: "var(--surface-solid-card, #060A0C)"; readonly border: "var(--outline-solid-primary, #23292D)"; readonly red: "var(--outline-negative, #FF3D51)"; }; export declare const TABLE_BORDER_RADIUS = 8; export declare const DURATION = 0.5; export declare const LVL_1_ROW_CLASS = "lvl-1-row"; export declare const DETAIL_PANEL_ROW_CLASS = "detail-panel-row"; export declare const ROW_IDX_START_CLASS = "row-idx-"; export declare const FIRST_ROW = "row-idx-0"; export declare const LIST_WIDTH: Record; export declare const FILTER_POPOVER_WIDTH: Record; export declare const DEFAULT_TABLE_TRANSITION_DELAY = "0.3s"; export declare const DEFAULT_TABLE_TRANSITION = "all 0.3s ease-out";