///
import './index.less';
export interface PickerProps {
destroyOnClose?: boolean;
data: Array<{
label: string;
value: string;
}[]>;
value?: string | Array;
defaultValue?: Array;
placeholder?: string;
onChange?: any;
disabled?: boolean;
allowClear?: boolean;
}
export declare const Picker: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>;