import type { CommandConfigScope, JHipsterConfigs } from './types.ts';
export declare function loadCommandConfigsIntoApplication<Context>(this: Context, options: {
    source: Record<string, any>;
    application: Record<string, any>;
    commandsConfigs: JHipsterConfigs;
}): void;
export declare function loadCommandConfigsKeysIntoTemplatesContext<Context>(this: Context, options: {
    templatesContext: Record<string, any>;
    commandsConfigs: JHipsterConfigs;
    scopes?: CommandConfigScope[];
}): void;
