import { ColumnObject } from '../Table'; export declare const MENU_STROGE_NAME = "MENU_STROGE_NAME"; export declare const MENU_STROGE_WIDTH = "MENU_STROGE_WIDTH"; export interface UseColumnsProps { allColumns: ColumnObject[]; pageKey: string; resize: boolean; } export declare const useColumns: ({ allColumns, pageKey, resize }: UseColumnsProps) => [ColumnObject[], (newColumns: any) => void];