import { SerializedStyles } from '@emotion/react'; import { BCDropListOptionsType } from '../constants/Droplist'; export interface BCMultiSelectProps { options: BCDropListOptionsType[]; selected: string[]; onChange: (values: string[]) => void; placeholder?: string; rtl?: boolean; searchable?: boolean; searchPlaceholder?: string; disabled?: boolean; className?: string; maxChipsVisible?: number; showSelectAll?: boolean; selectAllText?: string; clearAllText?: string; noResultsText?: string; usePortal?: boolean; containerCss?: SerializedStyles; buttonCss?: SerializedStyles; dropDownContentCss?: SerializedStyles; } export declare function BCMultiSelect({ options, selected, onChange, placeholder, rtl, searchable, searchPlaceholder, disabled, className, maxChipsVisible, showSelectAll, selectAllText, clearAllText, noResultsText, usePortal, containerCss, buttonCss, dropDownContentCss, }: BCMultiSelectProps): import("@emotion/react/jsx-runtime").JSX.Element; export default BCMultiSelect;