export interface ConverterContext {
    reduxData?: Record<string, unknown>;
    userConfig?: any;
}
export declare class Converter {
    private readonly context;
    constructor(context?: ConverterContext);
    private resolveLanguage;
    updateFormConfigMiscellaneous(formConfig: any, args: any): any;
    updateFormConfigFromUserConfig(formConfig: any, userConfig: any): any;
    updateFormConfigProperties(formConfig: any): any;
    convertFormConfig(formConfig: any): any;
}
