export declare const MCP_CANONICAL_PREFIX: "mcp."; export declare const MCP_WIRE_PREFIX: "mcp_"; export declare const MCP_WIRE_MAX_LENGTH = 64; export declare function canonicalToolName(serverName: string, toolName: string): string; export declare function isCanonicalToolName(value: string): boolean; export declare function toolIdentity(serverName: string, toolName: string): string; export interface WireNameInput { readonly serverName: string; readonly toolName: string; } export declare class WireNameAllocator { private readonly used; assign(input: WireNameInput): string; } export declare function allocateWireNames(inputs: readonly WireNameInput[]): Map;