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;
