import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Connection, Connection$Outbound } from "./connection.js"; /** * The caller's connection, or its absence. Never carries the token. */ export type ConnectionEnvelope = { connection?: Connection | null | undefined; }; /** @internal */ export declare const ConnectionEnvelope$inboundSchema: z.ZodType; /** @internal */ export type ConnectionEnvelope$Outbound = { connection?: Connection$Outbound | null | undefined; }; /** @internal */ export declare const ConnectionEnvelope$outboundSchema: z.ZodType; export declare function connectionEnvelopeToJSON(connectionEnvelope: ConnectionEnvelope): string; export declare function connectionEnvelopeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connectionenvelope.d.ts.map