@nish1896/rhf-mui-components
Version:
A suite of 20+ production-ready react-hook-form components built with material-ui. Fully typed, tree-shakable, and optimized for enterprise-grade forms.
18 lines (17 loc) • 521 B
TypeScript
import { RHFMuiConfigInput } from "../types/mui.js";
import { ReactNode } from "react";
import * as react_jsx_runtime0 from "react/jsx-runtime";
//#region src/config/ConfigProvider.d.ts
type ConfigProviderProps = {
children: ReactNode;
} & RHFMuiConfigInput;
declare const ConfigProvider: ({
children,
defaultFormHelperTextSx,
defaultFormControlLabelSx,
defaultFormLabelSx,
dateAdapter,
allLabelsAboveFields
}: ConfigProviderProps) => react_jsx_runtime0.JSX.Element;
//#endregion
export { ConfigProvider };