import type { CommandConfigScope, JHipsterConfigs } from '../../../lib/command/index.ts';
import type { Application as BaseApplicationApplication, Entity as BaseApplicationEntity } from '../../base-application/types.d.ts';
import type CoreGenerator from '../index.ts';
import type { Config as BaseCoreConfig } from '../types.d.ts';
export declare function loadConfig(this: CoreGenerator, configsDef: JHipsterConfigs | undefined, data: {
    application: BaseApplicationApplication<BaseApplicationEntity>;
}): void;
export declare function loadConfig(configsDef: JHipsterConfigs | undefined, data: {
    application: BaseApplicationApplication<BaseApplicationEntity>;
    config?: BaseCoreConfig;
}): void;
export declare const loadDerivedConfig: (configsDef: JHipsterConfigs, { application }: {
    application: any;
}) => void;
export declare const loadConfigDefaults: (configsDef: JHipsterConfigs, { context, scopes }: {
    context: any;
    scopes: CommandConfigScope[];
}) => void;
