import React from 'react'; import type { StyleProp, TextStyle, ViewProps } from 'react-native'; export interface PickerItem { value: T; label: string; } interface WheelPickerProps extends ViewProps { onValueChange?: (value: T, index: number) => void; selectedValue: T; items: PickerItem[]; style?: StyleProp; itemStyle?: StyleProp; cyclic?: boolean; } declare function WheelPicker(props: WheelPickerProps): React.JSX.Element; export default WheelPicker;