import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Version number, or 'latest' for the most recent version. Defaults to the skill's default_version. */ export type SkillReferenceVersion = string | number; export type SkillReference = { type: "skill_reference"; /** * ID of the skill to inject into the container. */ skillId: string; /** * Version number, or 'latest' for the most recent version. Defaults to the skill's default_version. */ version?: string | number | undefined; }; /** @internal */ export declare const SkillReferenceVersion$inboundSchema: z.ZodType; /** @internal */ export type SkillReferenceVersion$Outbound = string | number; /** @internal */ export declare const SkillReferenceVersion$outboundSchema: z.ZodType; export declare function skillReferenceVersionToJSON(skillReferenceVersion: SkillReferenceVersion): string; export declare function skillReferenceVersionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SkillReference$inboundSchema: z.ZodType; /** @internal */ export type SkillReference$Outbound = { type: "skill_reference"; skill_id: string; version?: string | number | undefined; }; /** @internal */ export declare const SkillReference$outboundSchema: z.ZodType; export declare function skillReferenceToJSON(skillReference: SkillReference): string; export declare function skillReferenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=skillreference.d.ts.map