import { HalfDonut } from "../_private/components/DonutChart/components/Donut/index"; import { Data as DonutChartData } from "../_private/components/DonutChart/helpers"; import { Colors, Data } from "./index"; export declare const DEFAULT_EMPTY_COLOR = "var(--color-bg-ghost)"; export declare const DEFAULT_DATA: { readonly value: 0; readonly valueMin: 0; readonly valueMax: 100; }; export declare const getColors: (colors: readonly [string, string, ...string[]], title: string, data: Data) => { [x: string]: string; empty: string; }; export declare const getValuePercent: (data: Data) => number; export declare const getTextData: (title: string, data?: Data) => { title: string; value: string; }; export declare const getData: ({ title, data, halfDonut, colors, }: { title: string; data: Data; halfDonut?: "left" | "right" | "bottom" | "top" | undefined; colors: readonly [string, string, ...string[]]; }) => readonly DonutChartData[]; export declare const getMinChartSize: (halfDonut?: "left" | "right" | "bottom" | "top" | undefined, showText?: boolean | undefined, showTitle?: boolean | undefined) => 50 | 96 | 170 | 128 | 148;