import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EventsControllerCancelRequest = { transactionId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type EventsControllerCancelResponse = { headers: { [k: string]: Array; }; result: boolean; }; /** @internal */ export type EventsControllerCancelRequest$Outbound = { transactionId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const EventsControllerCancelRequest$outboundSchema: z.ZodType; export declare function eventsControllerCancelRequestToJSON(eventsControllerCancelRequest: EventsControllerCancelRequest): string; /** @internal */ export declare const EventsControllerCancelResponse$inboundSchema: z.ZodType; export declare function eventsControllerCancelResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventscontrollercancel.d.ts.map