/// <reference types="react" />
import React from 'react';
import MultiPickerProps from './MultiPickerTypes';
export interface IMultiPickerProp {
    getValue: Function;
}
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<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;
    };
};
export default _default;
