import Command from '../Command';
import Connection from '../Connection';
export default class ShellCommand extends Command<Connection> {
    execute(command: string): Promise<Connection>;
}
