import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateResponseFeedbackRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createFeedbackRequest: components.CreateFeedbackRequest; }; /** @internal */ export declare const CreateResponseFeedbackRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateResponseFeedbackRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; CreateFeedbackRequest: components.CreateFeedbackRequest$Outbound; }; /** @internal */ export declare const CreateResponseFeedbackRequest$outboundSchema: z.ZodType; export declare function createResponseFeedbackRequestToJSON(createResponseFeedbackRequest: CreateResponseFeedbackRequest): string; export declare function createResponseFeedbackRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createresponsefeedback.d.ts.map