/** * SkillCard Component * * Card component displaying skill details with mastery status. * * @packageDocumentation */ import { type FC } from 'react'; import type { SkillCardProps } from './types.js'; /** * SkillCard Component * * Displays skill information with optional mastery tracking. * * @example * ```tsx * import { SkillCard } from 'learngraph/components'; * * function SkillDetails({ skill }) { * return ( * console.log('Start learning')} * /> * ); * } * ``` */ export declare const SkillCard: FC; export default SkillCard; //# sourceMappingURL=SkillCard.d.ts.map