import React from "react"; import { TextInputProps } from "../TextInput"; export type AutocompleteProps = Omit, "onChange" | "value"> & { options?: string[]; value?: string; onChange?: (val: string) => void; fullwidth?: boolean; textInputProps?: TextInputProps; }; export default function Autocomplete({ options, value, textInputProps, onChange, fullwidth, ...props }: AutocompleteProps): React.JSX.Element;