import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PreconfiguredSkill = { /** * Skill name, used as { type: 'preconfigured', name: '...' } in tool definitions */ name: string; /** * Description of what the skill does */ description: string; object?: "preconfigured_skill" | undefined; }; /** @internal */ export declare const PreconfiguredSkill$inboundSchema: z.ZodType; /** @internal */ export type PreconfiguredSkill$Outbound = { name: string; description: string; object: "preconfigured_skill"; }; /** @internal */ export declare const PreconfiguredSkill$outboundSchema: z.ZodType; export declare function preconfiguredSkillToJSON(preconfiguredSkill: PreconfiguredSkill): string; export declare function preconfiguredSkillFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preconfiguredskill.d.ts.map