UNPKG

artwork-react-native

Version:

artwork design master for react-native

14 lines (13 loc) 378 B
/// <reference types="react" /> import React from 'react'; import { IPickerProps } from './PickerTypes'; declare class Picker extends React.Component<IPickerProps, {}> { static defaultProps: { children: never[]; }; static Item: any; getValue(): any; shouldComponentUpdate(nextProps: any): boolean; render(): JSX.Element; } export default Picker;