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