``` export interface SSHConfig { host: string; port: number; username: string; password?: string; privateKeyPath?: string; privateKey?: Buffer; passphrase?: string; // ← нет agentForward! } ```