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