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