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 CreateCompletionFeedbackRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createFeedbackRequest: components.CreateFeedbackRequest; }; /** @internal */ export declare const CreateCompletionFeedbackRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateCompletionFeedbackRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; CreateFeedbackRequest: components.CreateFeedbackRequest$Outbound; }; /** @internal */ export declare const CreateCompletionFeedbackRequest$outboundSchema: z.ZodType; export declare function createCompletionFeedbackRequestToJSON(createCompletionFeedbackRequest: CreateCompletionFeedbackRequest): string; export declare function createCompletionFeedbackRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcompletionfeedback.d.ts.map