import type { FileSystem } from '../types/filesystem.js'; import type { SkillStoreLike } from '../types/skills.js'; export interface SkillDiagnostic { folder: string; skillPath: string; message: string; } export interface FsSkillStoreOptions { onDiagnostic?: (diagnostic: SkillDiagnostic) => void; } export declare function fsSkillStore(fs: FileSystem, orderedRoots?: readonly string[], opts?: FsSkillStoreOptions): SkillStoreLike;