import { default as default_2 } from 'react'; import * as React_2 from 'react'; export declare function ArticlesCoverage({ total, trend, trendValue, coveragePercentage, data, chartConfig, locale, className, }: ArticlesCoverageProps): default_2.JSX.Element; export declare interface ArticlesCoverageProps { total: number; trend: Trend; trendValue: string; coveragePercentage: number; data: Array>; chartConfig: ChartConfig; locale?: string; className?: string; } declare type ChartConfig = { [k in string]: { label?: React_2.ReactNode; icon?: React_2.ComponentType; } & ({ color?: string; theme?: never; } | { color?: never; theme: Record; }); }; declare const THEMES: { readonly light: ""; readonly dark: ".dark"; }; declare enum Trend { UP = "up", DOWN = "down", FLAT = "flat" } export { }