/// import { Option } from "./Select"; interface MuliSelectProps { disabled?: boolean; placeholder?: string; value: { [key: string]: string | number; }; options: Option[]; title?: string; addButtonTitle?: string; onChange: (value: { [key: string]: string | number; }) => void; } export default function MuliSelect({ disabled, value, options, title, onChange, addButtonTitle, }: MuliSelectProps): JSX.Element; export {};