import { type ReactNode } from "react"; export type SearchOption = { value: string; label: string; icon?: ReactNode; }; type Props = { onInput: (value: string) => void; options: SearchOption[]; onValuesChange: (values: string[], currValue: string) => void; addedEmails?: string[]; isLoading?: boolean; placeholder?: string; excludeValues?: string[]; }; export declare function SearchInput({ onInput, options, onValuesChange, isLoading, placeholder, excludeValues, addedEmails, }: Props): any; export {};