/** * Here is where we take the raw definition provided by the consumer and and do any clean up and standardize the format of the * data that gets fed to the parser. */ import { CliCommandDefinition, CliCommandDefinitionArgument, CliCommandDefinitionOption } from '../types'; export declare const initCommandDefinitionOptions: (options: CliCommandDefinitionOption[]) => void; export declare const initCommandDefinitionArgument: (arg: CliCommandDefinitionArgument) => CliCommandDefinitionArgument; export declare const initCommandDefinitionArguments: (args: CliCommandDefinitionArgument[]) => CliCommandDefinitionArgument[]; export declare const initCommandDefinition: (cmdDef: CliCommandDefinition<{}, {}, {}, {}>) => CliCommandDefinition<{}, {}, {}, {}>;