import { Command } from '../Command';
/**
 * A command that prints the version of the binary (`cli.binaryVersion`).
 *
 * Paths: `-v`, `--version`
 */
export declare class VersionCommand extends Command<any> {
    static paths: string[][];
    execute(): Promise<void>;
}
