import React from "react";
import "./MultiselectDropdown.scss";
export type viewType = "verticale" | "horizontal";
export type mode = "light" | "dark";
type MultiSelectDropdownProps = {
    options: any;
    selected: string[];
    onChange: (selected: string[]) => void;
    mainClassName?: string;
    dropContentClass?: string;
    dropClassName?: string;
    mainId?: string;
    dropId?: string;
    dropdownLabel?: string;
    placeHolder?: string;
    view?: viewType;
    dropdownMode?: mode;
};
declare const MultiSelectDropdown: React.FC<MultiSelectDropdownProps>;
export default MultiSelectDropdown;
