import React from "react"; import { PopperProps } from "@mui/material/Popper"; import { AutocompleteProps } from "@mui/material/Autocomplete"; import { TextFieldProps } from "./TextField"; export interface AutocompleteDropdownProps extends Omit, "renderInput"> { /** * The short hint displayed in the input before the user enters a value. */ placeholder?: string; /** * Props applied to the `TextField` element. */ textFieldProps?: TextFieldProps; /** * Props applied to the [`Popper`](@material-ui/core/Popper) element. */ popperProps?: Partial; } declare const AutocompleteDropdown: React.FC; export default AutocompleteDropdown;