export declare const templateTypes: { name: string; value: string; }[]; export declare const helpArgs: { '--help': BooleanConstructor; '-h': string; }; export type KnownCommandName = 'create' | 'run' | 'build' | 'set' | 'help' | 'test' | 'verify' | 'convert' | 'rename' | 'pack' | 'snapshot'; export interface CommandInfo { readonly name: KnownCommandName; readonly description: string; readonly example: string; } export declare const availableCommands: CommandInfo[]; export declare const helpMessages: { help: string; create: string; run: string; build: string; set: string; test: string; verify: string; convert: string; rename: string; pack: string; snapshot: string; };