/** * ProgressDashboard Component * * Dashboard showing learning progress and statistics. * * @packageDocumentation */ import { type FC } from 'react'; import type { ProgressDashboardProps } from './types.js'; /** * ProgressDashboard Component * * Comprehensive dashboard for tracking learning progress. * * @example * ```tsx * import { ProgressDashboard } from 'learngraph/components'; * * function Dashboard() { * return ( * * ); * } * ``` */ export declare const ProgressDashboard: FC; export default ProgressDashboard; //# sourceMappingURL=ProgressDashboard.d.ts.map