import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PreconfiguredSkillReference, PreconfiguredSkillReference$Outbound } from "./preconfiguredskillreference.js"; import { SkillReference, SkillReference$Outbound } from "./skillreference.js"; export type SkillEntry = SkillReference | PreconfiguredSkillReference; /** @internal */ export declare const SkillEntry$inboundSchema: z.ZodType; /** @internal */ export type SkillEntry$Outbound = SkillReference$Outbound | PreconfiguredSkillReference$Outbound; /** @internal */ export declare const SkillEntry$outboundSchema: z.ZodType; export declare function skillEntryToJSON(skillEntry: SkillEntry): string; export declare function skillEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=skillentry.d.ts.map