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