@nish1896/rhf-mui-components
Version:
A suite of 20+ reusable Material UI components for React Hook Form to minimize your time and effort in creating and styling forms
9 lines (8 loc) • 498 B
TypeScript
import { type ReactNode } from 'react';
import type { RHFMuiConfig, RHFMuiConfigInput } from '../types';
type ConfigProviderProps = {
children: ReactNode;
} & RHFMuiConfigInput;
export declare const RHFMuiConfigContext: import("react").Context<RHFMuiConfig>;
export declare const ConfigProvider: ({ children, defaultFormHelperTextSx, defaultFormControlLabelSx, defaultFormLabelSx, dateAdapter, allLabelsAboveFields }: ConfigProviderProps) => import("react/jsx-runtime").JSX.Element;
export {};