import * as React from 'react'; import MultiPickerProps from './MultiPickerProps'; export interface IMultiPickerProp { getValue: () => any; } declare const _default: { 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(state: any, callback?: () => any): void; forceUpdate(callBack?: () => any): void; props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly; context: any; refs: { [key: string]: React.ReactInstance; }; componentWillMount?(): void; componentDidMount?(): void; componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean; componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; componentDidUpdate?(prevProps: Readonly, prevState: Readonly, prevContext: any): void; componentWillUnmount?(): void; }; defaultProps: { prefixCls: string; onValueChange(): void; }; }; export default _default;