import type { Sse, StreamableHttp } from "../types.js"; export type OAuthRemoteTransport = StreamableHttp | Sse; export declare function canonicalizeRemoteServerUrl(input: string | URL): string; export declare function createRemoteTransportFingerprint(name: string, transport: OAuthRemoteTransport): string; export declare function createRemoteTransportIdentity(name: string, transport: OAuthRemoteTransport): { key: string; serverName: string; serverUrl: string; };