import type { Agent } from '../agent/Agent'; import type { OutboundPackage } from '../types'; export interface OutboundTransport { supportedSchemes: string[]; sendMessage(outboundPackage: OutboundPackage): Promise; start(agent: Agent): Promise; stop(): Promise; }