import { Command } from '@oclif/core'; export default class DeviceTunnelCmd extends Command { static description: string; static examples: string[]; static args: { deviceOrFleet: import("@oclif/core/lib/interfaces").Arg>; }; static flags: { port: import("@oclif/core/lib/interfaces").OptionFlag; }; static primary: boolean; static authenticated: boolean; run(): Promise; parsePortMapping(portMapping: string): { remotePort: number; localAddress: string; localPort: number; }; isValidPort(port: number): boolean; }