///
import { MultiSelectProps } from './multiselect.interfaces';
/**
* Multiselect input widget, renders selected values as chips
*/
export declare const MultiSelect: {
(props: MultiSelectProps): JSX.Element;
defaultTheme: (theme: import("../..").CommonTheme) => [string, {
background: string;
add: {
backgroundColor: string;
hoverBackgroundColor: string;
hoverBorderColor: string;
textColor: string;
};
chip: {
background: string;
color: string;
};
}];
};