import type { ItemOption, SelectProps, SelectValue } from '../Select.types'; type Props = { outerValue: SelectProps['value']; outerOnChange: SelectProps['onChange']; defaultValue: SelectProps['defaultValue']; multiselect: SelectProps['multiselect']; nativeMode: boolean; }; export declare const useValue: ({ outerValue, outerOnChange, defaultValue, multiselect, nativeMode }: Props) => { value: SelectValue; handleChange: (newValue: SelectValue, item: ItemOption | null) => void; }; export {}; //# sourceMappingURL=useValue.d.ts.map