ChartConfig: {
    [k in string]: {
        icon?: React.ComponentType;
        label?: React.ReactNode;
    } & ({
        color?: string;
        theme?: never;
    } | {
        color?: never;
        theme: Record<keyof typeof THEMES, string>;
    })
}