import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions'; import { SSHBaseCommand } from './base'; export declare class SSHListCommand extends SSHBaseCommand implements CommandPreRun { getMetadata(): Promise; preRun(): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; }