/** * Backend Platform * * Exports backend platform info — verification surface for HTTP/gRPC/GraphQL/ * WebSocket interactions with backend services, plus a log-capture domain * for the request→log correlation loop. */ import { PlatformInfo } from '../types'; export { SERVER_INSTRUCTIONS } from './server-info'; export { tools, createToolExecutor, createToolSessionContext } from './tools'; export { BackendToolSessionContext } from './tools/context'; export { BackendToolExecutor } from './tools/tool-executor'; export declare const backendPlatformInfo: PlatformInfo;