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