import React from 'react'; import { TextStyle } from 'react-native'; import Animated from 'react-native-reanimated'; import { TextProps } from '../text'; import { WheelPickerAlign, WheelPickerItemValue } from './types'; export interface WheelPickerItemProps { label: string; value: T; align?: WheelPickerAlign; disableRTL?: boolean; } interface InternalProps extends WheelPickerItemProps { index: number; offset: Animated.SharedValue; itemHeight: number; activeColor?: string; inactiveColor?: string; style?: TextStyle; onSelect: (index: number) => void; onPress?: () => void; centerH?: boolean; fakeLabel?: string; fakeLabelStyle?: TextStyle; fakeLabelProps?: TextProps; testID?: string; } declare const _default: React.MemoExoticComponent<((props: InternalProps) => React.JSX.Element)>; export default _default;