import { type Skill } from "./skill-contract.js"; import type { ParsedSkillFrontmatter } from "./types.js"; export declare function loadSkillsFromDirSafe(params: { dir: string; source: string; maxBytes?: number; }): { skills: Skill[]; frontmatterByFilePath: ReadonlyMap; }; export declare function readSkillFrontmatterSafe(params: { rootDir: string; filePath: string; maxBytes?: number; }): Record | null;