import * as React from 'react'; import { IPickerProps } from './PickerTypes'; export interface IItemProps { className?: string; value: any; children?: React.ReactNode; } export default function (ComposedComponent: any): { new (props?: IPickerProps, context?: any): { select: (value: any, itemHeight: any, scrollTo: any) => void; selectByIndex(index: any, itemHeight: any, zscrollTo: any): void; computeChildIndex(top: any, itemHeight: any, childrenLength: any): number; doScrollingComplete: (top: any, itemHeight: any, fireValueChange: 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; }; Item: (_props: IItemProps) => any; };