import { ReactNode } from 'react';
import { RegulationConfig } from '../types/regulation';
import { ThemeConfig } from '../types/theme';
interface FormConfigContextValue {
    regulationConfig: RegulationConfig;
    themeConfig: ThemeConfig;
}
interface FormConfigProviderProps {
    regulationConfig: RegulationConfig;
    themeConfig: ThemeConfig;
    children: ReactNode;
}
export declare const FormConfigProvider: ({ regulationConfig, themeConfig, children, }: FormConfigProviderProps) => import("react/jsx-runtime").JSX.Element;
export declare function useFormConfig(): FormConfigContextValue;
export {};
