import { RHFMuiConfigInput } from "../types/config.js"; import "../types/index.js"; import { ReactNode } from "react"; //#region src/config/ConfigProvider.d.ts type ConfigProviderProps = { children: ReactNode; } & RHFMuiConfigInput; /** * Context provider that sets shared defaults for all `RHF*` components * mounted beneath it, including default `sx` overrides for `FormLabel`, * `FormControlLabel`, and `FormHelperText`, a shared `dateAdapter` for * all pickers, and whether field labels render above their controls by default. * * Each config key is merged on top of `DefaultRHFMuiConfig`, so you * only need to pass the keys you want to override. * * Docs: [Customization](https://rhf-mui-components.vercel.app/customization) */ declare const ConfigProvider: ({ children, defaultFormHelperTextSx, defaultFormControlLabelSx, defaultFormLabelSx, dateAdapter, allLabelsAboveFields }: ConfigProviderProps) => import("react").JSX.Element; //#endregion export { ConfigProvider };