import { Dispatch, PropsWithChildren, SetStateAction } from 'react';
interface ColumnManagerState {
    readonly query: string;
    readonly setQuery: Dispatch<SetStateAction<string>>;
}
export declare const ColumnStateProvider: (props: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
export declare const useColumnManagerState: () => ColumnManagerState;
export {};
