import { PickerProps, PickerValue } from '../types'; interface UsePickerLabelProps extends Pick { items: { value: string | number; label: string; }[] | null | undefined; } declare const usePickerLabel: (props: UsePickerLabelProps) => { getLabelsFromArray: (value: PickerValue) => string; getLabel: (value: PickerValue) => string | undefined; accessibilityInfo: { accessibilityLabel: string; accessibilityHint: string; }; label: string; }; export default usePickerLabel;