import { default as default_2 } from 'react'; import * as React_2 from 'react'; export declare function ArticlesUpdated({ total, trend, trendValue, data, chartConfig, dashedKeys, locale, className, }: ArticlesUpdatedProps): default_2.JSX.Element; export declare interface ArticlesUpdatedProps { total: number; trend: Trend; trendValue: string; data: Array>; chartConfig: ChartConfig; dashedKeys?: string[]; 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 { }