UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

17 lines (16 loc) 515 B
/// <reference types="react" /> import { BaseComponent } from "../../commons"; declare type PickerDialogProps = { selectedValue?: number | string; onValueChange?: (...args: any[]) => any; onDone?: (...args: any[]) => any; onCancel?: (...args: any[]) => any; }; declare class PickerDialog extends BaseComponent<PickerDialogProps, {}> { state: {}; renderHeader(): JSX.Element; renderFooter(): JSX.Element; renderPicker(): any; render(): JSX.Element; } export default PickerDialog;