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