import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; import { type ContextLimits } from "../core/context-limits.js"; import { type Skill } from "../core/skills.js"; declare const parameters: z.ZodObject<{ skill: z.ZodString; args: z.ZodOptional; }, z.core.$strip>; export declare function createSkillTool(skills: Skill[], limits?: ContextLimits): AgentTool; export {}; //# sourceMappingURL=skill.d.ts.map