import { MouseEvent, KeyboardEvent, ReactNode } from 'react'; import { SelectProps } from './types.js'; declare type SelectHandleClick = (event: MouseEvent) => void; declare type SelectHandleKeyDown = (event: KeyboardEvent) => void; declare type SelectHandleClose = () => void; declare type UseSelect = (props: Pick) => { handleClick: SelectHandleClick; handleClose: SelectHandleClose; handleKeyDown: SelectHandleKeyDown; opened: boolean; title: string; options: ReactNode; }; export declare const useSelect: UseSelect; export {}; //# sourceMappingURL=useSelect.d.ts.map