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