UNPKG

artwork-react-native

Version:

artwork design master for react-native

27 lines (26 loc) 912 B
/// <reference types="react" /> import React from 'react'; import MultiPickerProps from './MultiPickerTypes'; export default function (ComposedComponent: any): { new (props: MultiPickerProps, context?: any): { getValue: () => any[]; onChange: (i: any, v: any, cb: any) => void; onValueChange: (i: any, v: any) => void; onScrollChange: (i: any, v: any) => void; render(): JSX.Element; setState<K extends string>(state: any, callback?: (() => void) | undefined): void; forceUpdate(callBack?: (() => void) | undefined): void; props: Readonly<{ children?: React.ReactNode; }> & Readonly<MultiPickerProps>; state: Readonly<any>; context: any; refs: { [key: string]: React.ReactInstance; }; }; defaultProps: { prefixCls: string; onValueChange(): void; }; };