import type { JHipsterOptionDefinition } from '../jdl/core/types/parsing.js'; import type { ConfigSpec, JHipsterArguments, JHipsterChoices, JHipsterConfigs, JHipsterOption } from './types.js'; type JHipsterArgumentsWithChoices = JHipsterArguments & { choices?: JHipsterChoices; }; export declare const extractArgumentsFromConfigs: (configs: JHipsterConfigs | undefined) => JHipsterArgumentsWithChoices; export declare const extractJdlDefinitionFromCommandConfig: (configs?: JHipsterConfigs) => JHipsterOptionDefinition[]; export declare const convertConfigToOption: (name: string, config?: ConfigSpec) => JHipsterOption | undefined; export {};