/** * SkillGraph Component * * Interactive graph visualization for skills and prerequisites. * Uses React Flow for rendering and interaction. * * @packageDocumentation */ import { type FC } from 'react'; import type { SkillGraphProps } from './types.js'; /** * SkillGraph Component * * Interactive visualization of skills and their prerequisite relationships. * * @example * ```tsx * import { SkillGraph } from 'learngraph/components'; * * function CurriculumView() { * const { skills, edges } = useLearnGraph(); * * return ( * console.log('Selected:', node.skill.name)} * height={600} * /> * ); * } * ``` */ export declare const SkillGraph: FC; export default SkillGraph; //# sourceMappingURL=SkillGraph.d.ts.map