type McpLoopbackRuntime = { port: number; ownerToken: string; nonOwnerToken: string; }; export declare function getActiveMcpLoopbackRuntime(): McpLoopbackRuntime | undefined; export declare function setActiveMcpLoopbackRuntime(runtime: McpLoopbackRuntime): void; export declare function resolveMcpLoopbackBearerToken(runtime: McpLoopbackRuntime, senderIsOwner: boolean): string; export declare function clearActiveMcpLoopbackRuntimeByOwnerToken(ownerToken: string): void; export declare function createMcpLoopbackServerConfig(port: number): { mcpServers: { klaw: { type: string; url: string; headers: { Authorization: string; "x-session-key": string; "x-klaw-agent-id": string; "x-klaw-account-id": string; "x-klaw-message-channel": string; "x-klaw-inbound-event-kind": string; }; }; }; }; export {};