import { ColumnsControlConfig } from '../types'; import { ColumnConfig, ObjectForExtending } from '../../types'; import { KeyText, KeyTextMap, KeyTextObj } from '../../feature-key-text/types'; export declare const getColumnLabel: ({ columnsControlConfig, key, isHiddenColumn, isPinnedColumn, columnsConfigMap, isKeyText, keyText, tableConfigKeyTextBoolean, }: { columnsControlConfig: ColumnsControlConfig | undefined; key: string; isHiddenColumn: boolean; isPinnedColumn: boolean; columnsConfigMap: Map>; isKeyText: KeyTextObj | undefined; keyText: KeyText; tableConfigKeyTextBoolean: boolean; }) => import('react').ReactNode; export declare const correctedDisabled: (disabledsSet: Set, { currentKey, colsWithKeyTextMap, tableConfigKeyTextBoolean, }: { currentKey: string; colsWithKeyTextMap: KeyTextMap; tableConfigKeyTextBoolean: boolean; }) => true | null;