import React from 'react';
import { G2Spec } from '@antv/g2';
export interface IThemeConfig {
    name: string;
    colors: {
        [key: string]: string;
    };
    backgroundImage: string;
    defaultTheme: "light" | "dark";
}
export declare const getSelectedColorSetFromStorage: () => string;
export declare const G2Chart: ({ spec, height, width }: {
    spec: G2Spec;
    height?: number;
    width?: number;
}) => React.JSX.Element;
