import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteResponseRequest = { responseId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const DeleteResponseRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteResponseRequest$Outbound = { response_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const DeleteResponseRequest$outboundSchema: z.ZodType; export declare function deleteResponseRequestToJSON(deleteResponseRequest: DeleteResponseRequest): string; export declare function deleteResponseRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteresponse.d.ts.map