/// import { OptionBaseType } from './index'; declare const defaultSelectContext: { filter: string; isOpen: boolean; isDisabled: boolean; hasFocus: boolean; targeted: string; selectedOption: { value: string; label: string; }; options: OptionBaseType[]; setTarget(value: string): void; addOption(option: { value: string; label: string; }): void; setValue(value: string): void; setOpen(open: boolean): void; setFilter(filter: string): void; }; export type SelectContextType = typeof defaultSelectContext; declare const SelectContext: import("react").Context<{ filter: string; isOpen: boolean; isDisabled: boolean; hasFocus: boolean; targeted: string; selectedOption: { value: string; label: string; }; options: OptionBaseType[]; setTarget(value: string): void; addOption(option: { value: string; label: string; }): void; setValue(value: string): void; setOpen(open: boolean): void; setFilter(filter: string): void; }>; export default SelectContext;