/** * SkillExplorer Component * * Interactive skill browser with filtering and search. * * @packageDocumentation */ import { type FC } from 'react'; import type { SkillExplorerProps } from './types.js'; /** * SkillExplorer Component * * Interactive browser for exploring and filtering skills. * * @example * ```tsx * import { SkillExplorer } from 'learngraph/components'; * * function CurriculumBrowser() { * const { skills, edges } = useLearnGraph(); * * return ( * navigate(`/skill/${skill.id}`)} * onSetGoal={(skill) => setLearningGoal(skill.id)} * /> * ); * } * ``` */ export declare const SkillExplorer: FC; export default SkillExplorer; //# sourceMappingURL=SkillExplorer.d.ts.map