UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

9 lines (8 loc) 300 B
import { RefObject } from 'react'; import { SelectHandles } from './select-context'; declare const useSelectHandle: () => { setValue(value?: string | string[]): void | undefined; getValue(): string | string[] | undefined; ref: RefObject<SelectHandles>; }; export default useSelectHandle;