import type { CommandOptions, Command } from './command'; export declare class VersionCmd implements Command { name: string; description: string; alias: string; loader: boolean; group: string; options: CommandOptions; report(): Promise; json(): Promise<{ bit: string; }>; }