import * as React from "react"; export type MultiSelectOption = { value: string; label: React.ReactNode; description?: React.ReactNode; disabled?: boolean; }; export type MultiSelectProps = React.ComponentProps<"div"> & { options: MultiSelectOption[]; value?: string[]; onValueChange?: (value: string[]) => void; placeholder?: React.ReactNode; maxVisibleTags?: number; }; declare function MultiSelect({ options, value, onValueChange, placeholder, maxVisibleTags, className, ...props }: MultiSelectProps): React.JSX.Element; export { MultiSelect };