import type { GatewayClient, ConnectParams } from "../types.js"; /** * Handle client connection request. * 客户端传入 sessionId、agentId、sessionType,Gateway 不再为配置/类型请求 Nest。 */ export declare function handleConnect(client: GatewayClient, params: ConnectParams): Promise<{ sessionId: string; status: string; }>;