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