import { Option } from "../DropDown"; interface Props { onChange: (value: string) => void; options: Option[]; placeholder?: string; value: Option | null; } export declare const Autocomplete: ({ options, value, onChange, placeholder, }: Props) => import("react/jsx-runtime").JSX.Element; export {};