import { Transporter, TransportKey, TransportType } from './transport.types'; import { AuthenticatedServerRequest } from '../server/server.types'; import { ServerResponse } from '@frontmcp/sdk'; import { Scope } from '../scope'; export declare class LocalTransporter implements Transporter { private readonly onDispose?; readonly type: TransportType; readonly tokenHash: string; readonly sessionId: string; private adapter; constructor(scope: Scope, key: TransportKey, res: ServerResponse, onDispose?: (() => void) | undefined); ping(timeoutMs?: number): Promise; handleRequest(req: AuthenticatedServerRequest, res: ServerResponse): Promise; ready(): Promise; initialize(req: AuthenticatedServerRequest, res: ServerResponse): Promise; destroy(reason: string): Promise; }