import { default as default_2 } from 'react'; import * as React_2 from 'react'; export declare function ChartAreaLinear({ title, metric, data, chartConfig, locale }: ChartAreaLinearProps): default_2.JSX.Element; export declare interface ChartAreaLinearProps { title: string; metric: string; data: { date: Date | string; key1: number; key2?: number; key3?: number; key4?: number; key5?: number; }[]; chartConfig: ChartConfig; locale?: string; } declare type ChartConfig = { [k in string]: { label?: React_2.ReactNode; icon?: React_2.ComponentType; } & ({ color?: string; theme?: never; } | { color?: never; theme: Record; }); }; export declare const description = "A linear area chart"; declare const THEMES: { readonly light: ""; readonly dark: ".dark"; }; export { }