import * as React from 'react'; import type { PickerRef } from '../../interface'; type PickerRefType = Omit & { focus: (options?: OptionType) => void; }; export default function usePickerRef(ref: React.Ref>): React.MutableRefObject>; export {};