import { MeshAgent, type AgentConfig } from "@cotal-ai/connector-core"; export interface Sidecar { agent: MeshAgent; config: AgentConfig; stop(): Promise; } /** Start the mesh agent, the control + bridge servers, and emit the tool descriptors file. * Reads `COTAL_CONTROL_SOCKET`, `COTAL_BRIDGE_SOCKET`, and `COTAL_TOOLS_FILE` from the env, and the * control token from the launch material (see controlFromEnv). */ export declare function startSidecar(): Sidecar; //# sourceMappingURL=sidecar.d.ts.map