import * as React from "react" import { TextStyle, StyleProp, ViewProps } from 'react-native' import { ItemValue } from "./Picker" export interface PickerIOSItemProps { label?: string; value?: number | string; color?: string; testID?: string; } declare class PickerIOSItem extends React.Component {} export interface PickerIOSProps extends ViewProps { itemStyle?: StyleProp; style?: StyleProp; onChange?: React.SyntheticEvent<{itemValue: ItemValue, itemIndex: number}>; onValueChange?: (itemValue: ItemValue, itemIndex: number) => void; selectedValue?: ItemValue; testID?: string; } declare class PickerIOS extends React.Component { static Item: typeof PickerIOSItem } export { PickerIOS };