/** * LearningPathView Component * * Displays a learning path with progress tracking. * * @packageDocumentation */ import { type FC } from 'react'; import type { LearningPathViewProps } from './types.js'; /** * LearningPathView Component * * Displays a learning path with progress tracking and step navigation. * * @example * ```tsx * import { LearningPathView } from 'learngraph/components'; * * function PathToAlgebra() { * const { steps } = useLearningPath({ * targetSkillId: 'algebra-101', * }); * * return ( * console.log('Selected:', step.skill.name)} * onStartStep={(step) => startLesson(step.skill.id)} * showProgress * showTimeEstimates * /> * ); * } * ``` */ export declare const LearningPathView: FC; export default LearningPathView; //# sourceMappingURL=LearningPathView.d.ts.map