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