/// import React from 'react'; import MultiPickerProps from './MultiPickerProps'; export default function (ComposedComponent: any): { new (props?: MultiPickerProps | undefined, 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) | undefined): void; forceUpdate(callBack?: (() => any) | undefined): void; props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly; context: any; refs: { [key: string]: React.ReactInstance; }; }; defaultProps: { prefixCls: string; onValueChange(): void; }; };