///
import { MultiSelectProps, MultiSelectOption } from '../MultiSelect/MultiSelect';
export interface MultiSelectWithSubviewProps {
items: MultiSelectOption[];
value: MultiSelectProps['value'];
changeViewButtonLabel: string;
subview: JSX.Element;
multiSelectProps?: Omit;
renderSubviewWithoutMenuStyling?: boolean;
}
export declare function MultiSelectWithSubview(props: MultiSelectWithSubviewProps): JSX.Element;