mui-extended
Version:
Extended UI Components built on Material UI
5 lines (4 loc) • 615 B
TypeScript
import { AutocompleteProps } from "@mui/material";
import { ReactNode, RefAttributes } from "react";
import { ControlledInputAttributes } from "../FormField";
export declare const FormAutocomplete: <T, Multiple extends boolean | undefined = undefined, DisableClearable extends boolean | undefined = undefined, FreeSolo extends boolean | undefined = undefined>(props: Omit<AutocompleteProps<T, Multiple, DisableClearable, FreeSolo>, keyof ControlledInputAttributes> & Pick<ControlledInputAttributes, "name"> & Partial<Omit<ControlledInputAttributes, "name" | "value">> & RefAttributes<HTMLDivElement>) => ReactNode;