/** * Sample educational graphs for testing and demos * * @packageDocumentation */ import type { SkillNodeInput, PrerequisiteEdgeInput, GraphStorage, ImportResult } from '../types/index.js'; /** * Sample fractions curriculum (elementary math) */ export declare const FRACTIONS_CURRICULUM: { nodes: SkillNodeInput[]; edges: PrerequisiteEdgeInput[]; }; /** * Sample programming fundamentals curriculum */ export declare const PROGRAMMING_CURRICULUM: { nodes: SkillNodeInput[]; edges: PrerequisiteEdgeInput[]; }; /** * Seed a storage instance with sample data */ export declare function seedStorage(storage: GraphStorage, curriculum?: 'fractions' | 'programming' | 'all', options?: { clearExisting?: boolean; }): Promise; //# sourceMappingURL=seeds.d.ts.map