import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Skill, Skill$Outbound } from "./skill.js"; export type SkillList = { object?: "list" | undefined; data: Array; firstId: string | null; hasMore: boolean; lastId: string | null; }; /** @internal */ export declare const SkillList$inboundSchema: z.ZodType; /** @internal */ export type SkillList$Outbound = { object: "list"; data: Array; first_id: string | null; has_more: boolean; last_id: string | null; }; /** @internal */ export declare const SkillList$outboundSchema: z.ZodType; export declare function skillListToJSON(skillList: SkillList): string; export declare function skillListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=skilllist.d.ts.map