import { z } from 'zod'; /** * Zod schema for Agent Skills SKILL.md frontmatter. * @see https://agentskills.io/specification */ export declare const skillFrontmatterSchema: z.ZodObject<{ name: z.ZodEffects; description: z.ZodString; license: z.ZodOptional; compatibility: z.ZodOptional; metadata: z.ZodOptional>; 'allowed-tools': z.ZodOptional; }, "strip", z.ZodTypeAny, { description: string; name: string; metadata?: Record | undefined; compatibility?: string | undefined; license?: string | undefined; 'allowed-tools'?: string | undefined; }, { description: string; name: string; metadata?: Record | undefined; compatibility?: string | undefined; license?: string | undefined; 'allowed-tools'?: string | undefined; }>; export type SkillFrontmatter = z.infer; //# sourceMappingURL=skillFrontmatter.d.ts.map