/// import { TextStyle } from 'react-native'; import { ItemProps } from './Item'; export interface WheelPickerProps { /** * Data source for WheelPicker */ items?: ItemProps[]; /** * Describe the height of each item in the WheelPicker */ itemHeight?: number; /** * Text color for the focused row */ activeTextColor?: string; /** * Text color for other, non-focused rows */ inactiveTextColor?: string; /** * Row text style */ textStyle?: TextStyle; /** * Event, on active row change */ onChange: (index: number, item?: ItemProps) => void; } declare const WheelPicker: ({ items, itemHeight, activeTextColor, inactiveTextColor, textStyle, onChange: onChangeEvent }: WheelPickerProps) => JSX.Element; export default WheelPicker;