import { type GeneralOverviewSectionProps } from './types';
/**
 * GeneralOverviewSection - General overview section for simulated exams
 *
 * Displays overall proficiency percentage and performance by area of knowledge.
 * Uses color and icon directly from API data for each area.
 * This section is independent of areaKnowledgeId and subjectId filters -
 * it always shows consolidated data across all simulated exams.
 *
 * @example
 * ```tsx
 * const { data, loading, error, fetchOverview } = useGeneralOverview(api);
 *
 * <GeneralOverviewSection
 *   data={data}
 *   loading={loading}
 *   error={error}
 *   scoreType="tri"
 * />
 * ```
 */
export declare function GeneralOverviewSection({ data, loading, error, scoreType, }: Readonly<GeneralOverviewSectionProps>): import("react/jsx-runtime").JSX.Element | null;
export default GeneralOverviewSection;
//# sourceMappingURL=GeneralOverviewSection.d.ts.map