import * as z from "zod/v4"; export type SkillsGetRequest = { skillId: string; version?: number | undefined; alias?: string | undefined; fields?: Array | undefined; }; /** @internal */ export type SkillsGetRequest$Outbound = { skill_id: string; version?: number | undefined; alias?: string | undefined; fields?: Array | undefined; }; /** @internal */ export declare const SkillsGetRequest$outboundSchema: z.ZodType; export declare function skillsGetRequestToJSON(skillsGetRequest: SkillsGetRequest): string; //# sourceMappingURL=skillsget.d.ts.map