import React from 'react';
interface Option {
    [key: string]: any;
}
interface MultiSelectDropdownProps {
    options: Option[];
    selectedValue: string[];
    type: 'arrayWithObject' | 'simpleArray';
    placeholder?: string;
    onChange: (option: any, type: 'arrayWithObject' | 'simpleArray') => void;
    getParam?: string;
}
declare const MultiSelectDropdown: React.FC<MultiSelectDropdownProps>;
export default MultiSelectDropdown;
