import React from 'react'; import { Control, UseFormSetValue, UseFormRegister } from 'react-hook-form'; interface DownshiftAutoCompleteProps { suggestions: string[]; control: Control; setValue: UseFormSetValue; register: UseFormRegister; placeholder: string; inputName: string; autofocus?: boolean; initialInputValue: string; } export declare const DownshiftAutoComplete: React.FC; export declare const DownshiftAutoCompleteWithSuggestions: React.FC; export {};