import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Cancellation, Cancellation$Outbound } from "./cancellation.js"; export type ReversedWithCancellation = { cancellation: Cancellation; }; /** @internal */ export declare const ReversedWithCancellation$inboundSchema: z.ZodType; /** @internal */ export type ReversedWithCancellation$Outbound = { cancellation: Cancellation$Outbound; }; /** @internal */ export declare const ReversedWithCancellation$outboundSchema: z.ZodType; export declare function reversedWithCancellationToJSON(reversedWithCancellation: ReversedWithCancellation): string; export declare function reversedWithCancellationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reversedwithcancellation.d.ts.map