///
import { Component } from 'react';
import MultiPickerProps from './MultiPickerProps';
export default class MultiPicker extends Component {
static defaultProps: {
prefixCls: string;
pickerPrefixCls: string;
onValueChange: () => any;
disabled: boolean;
};
getValue(): any[];
onValueChange(i: any, v: any): void;
render(): JSX.Element;
}