export default BrDropdownMultiSelectMenuV2; declare function BrDropdownMultiSelectMenuV2({ className, doneBtnColorStyle, options, showAllSelect, selectedOptionList, onSelectionDone, isLoading, onSelectionRemove, isSearchRequired, showSelectedOptionAsPill, selectAllText, onOptionSelection, }: { className: any; doneBtnColorStyle: any; options: any; showAllSelect: any; selectedOptionList: any; onSelectionDone: any; isLoading: any; onSelectionRemove: any; isSearchRequired: any; showSelectedOptionAsPill: any; selectAllText: any; onOptionSelection: any; }): JSX.Element; declare namespace BrDropdownMultiSelectMenuV2 { namespace propTypes { const className: PropTypes.Requireable; const doneBtnColorStyle: PropTypes.Requireable; const options: PropTypes.Requireable<(PropTypes.InferProps<{ label: PropTypes.Requireable; value: PropTypes.Requireable; group: PropTypes.Requireable; }> | null | undefined)[]>; const onSelectionDone: PropTypes.Validator<(...args: any[]) => any>; const onSelectionRemove: PropTypes.Requireable<(...args: any[]) => any>; const showAllSelect: PropTypes.Requireable; const selectedOptionList: PropTypes.Requireable<(PropTypes.InferProps<{ label: PropTypes.Requireable; value: PropTypes.Requireable; group: PropTypes.Requireable; }> | null | undefined)[]>; const isLoading: PropTypes.Requireable; const searchPlaceholderText: PropTypes.Requireable; const noItemFoundText: PropTypes.Requireable; } } import PropTypes from 'prop-types';