import { Command } from 'commander'; type Version_opts = { json?: boolean; pretty?: boolean; output?: string; }; type Version_info = { name: string; version: string; node: string; platform: string; arch: string; }; declare const get_version_info: () => Version_info; declare const handle_version: (opts: Version_opts) => void; declare const version_command: Command; export { version_command, handle_version, get_version_info }; //# sourceMappingURL=version.d.ts.map