import { ChartOptions } from "chart.js/auto"; import { CHART_TYPE } from "../../../types"; export declare const CHART_OPTIONS: { line: { label: string; value: string; icon: (props: any) => import("react/jsx-runtime").JSX.Element; }; bar: { label: string; value: string; icon: (props: any) => import("react/jsx-runtime").JSX.Element; }; horizontalBar: { label: string; value: string; icon: (props: any) => import("react/jsx-runtime").JSX.Element; }; stackedBar: { label: string; value: string; icon: (props: any) => import("react/jsx-runtime").JSX.Element; }; }; export declare const DEFAULT_CHART_TYPES: CHART_TYPE[]; export declare const DEFAULT_USAGE_BAR_GRAPH_OPTIONS: ChartOptions<"bar">; export declare const DEFAULT_USAGE_STACKED_BAR_GRAPH_OPTIONS: ChartOptions<"bar">;