import * as React from "react"; import { InputProps } from "../../../types"; export interface UserData { name: string; photo?: string; contactId?: string; } export interface DropdownSearchProps extends InputProps { onOptionSelected(option: UserData): void; options?: UserData[]; title?: string; placeholder?: string; } declare const DropdownUserSearch: ({ options, onOptionSelected, title, placeholder, ...inputProps }: DropdownSearchProps) => React.ReactElement | null; export default DropdownUserSearch;