import type { CliSpec, CommandConfigDefault, CommandConfigScope, ConfigSpec, JHipsterArgumentsWithChoices, JHipsterConfigs } from './types.ts'; export declare const extractArgumentsFromConfigs: (configs: JHipsterConfigs | undefined) => JHipsterArgumentsWithChoices; export type JHipsterCommandOptions = CliSpec & { choices?: string[]; scope: CommandConfigScope; default?: CommandConfigDefault; }; export declare const convertConfigToOption: >(name: string, config: T) => JHipsterCommandOptions | undefined;