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