/// <reference types="react" />
import { Key } from 'src/hooks/group';
declare const SelectContext: import("react").Context<{
    hidePopup: () => void;
    handleSearch: (value: Key, props: any) => boolean;
    searchValue: string;
}>;
export default SelectContext;
