import { ComponentProps, FC } from "react";
interface MultiComboBoxProps extends ComponentProps<"div"> {
    options: {
        label: string;
        value: string;
    }[];
    name?: string;
    pageSize?: number;
    selectAllLabel?: string[];
    onChange?: any;
    values?: any[];
    noOptionFoundLabel?: string;
    sortOrder?: "asc" | "desc" | "none";
    filterPlaceholder?: string;
}
declare const MultiComboBox: FC<MultiComboBoxProps>;
export { MultiComboBox };
