import type { SelectBaseProps } from './Select'; export declare const useSelect: ({ value, onChange, handleClose, }: { handleClose?: () => void; } & Pick) => { value: string | undefined; onChange: | import('react').Dispatch> | ((newValue: string) => void) | undefined; handleClose: (() => void) | undefined; }; export type SelectContextType = ReturnType; //# sourceMappingURL=useSelect.d.ts.map