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