import type { EnvironmentAdapter } from "#environments/adapter"; import type { SshEnvironment } from "#environments/model"; export declare class SshAdapter implements EnvironmentAdapter { readonly environment: SshEnvironment; constructor(environment: SshEnvironment); path(path: string): string; command(argv: string[]): { file: string; args: string[]; }; }