import "./customMultiSelect.css"; export type SelectOption = { label: string; value: string; }; type Props = { options: SelectOption[]; value: string[]; onChange: (next: string[]) => void; placeholder?: string; searchPlaceholder?: string; showSelectAll?: boolean; }; export default function CustomMultiSelect({ options, value, onChange, placeholder, searchPlaceholder, showSelectAll, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=CustomMultiSelect.d.ts.map