import React from 'react'; import { PickerProps } from './PickerTypes'; export interface IPickerProp { select: Function; doScrollingComplete: Function; } declare const _default: { new (props: Readonly): { select: (value: any, itemHeight: any, scrollTo: any) => void; selectByIndex(index: number, itemHeight: any, zscrollTo: any): void; computeChildIndex(top: any, itemHeight: any, childrenLength: number): number; doScrollingComplete: (top: any, itemHeight: any, fireValueChange: any) => void; render(): JSX.Element; context: any; setState(state: any, callback?: (() => void) | undefined): void; forceUpdate(callBack?: (() => void) | undefined): void; readonly props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly; refs: { [key: string]: React.ReactInstance; }; }; new (props: PickerProps, context?: any): { select: (value: any, itemHeight: any, scrollTo: any) => void; selectByIndex(index: number, itemHeight: any, zscrollTo: any): void; computeChildIndex(top: any, itemHeight: any, childrenLength: number): number; doScrollingComplete: (top: any, itemHeight: any, fireValueChange: any) => void; render(): JSX.Element; context: any; setState(state: any, callback?: (() => void) | undefined): void; forceUpdate(callBack?: (() => void) | undefined): void; readonly props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly; refs: { [key: string]: React.ReactInstance; }; }; Item: (_props: { value: any; }) => null; contextType?: React.Context | undefined; }; export default _default;