import { FC } from "react"; import { UseFormReturn } from "react-hook-form"; import { GridLegacyProps as GridProps } from "@mui/material/GridLegacy"; import { TypographyProps } from "@mui/material/Typography"; import { TFormSchema, TInputLabelMode } from "./type"; import { TextFieldProps } from "@mui/material/TextField"; export interface FormProps { itemProps?: any; disabled?: boolean; schema: TFormSchema; gridItemProps?: GridProps; hideRequiredStar?: boolean; withoutHelperText?: boolean; gridContainerProps?: GridProps; inputLabelMode?: TInputLabelMode; form: UseFormReturn; inputVariants?: TextFieldProps["variant"]; labelsProps?: Partial> | undefined; } declare const Form: FC; export default Form;