export declare const colors: readonly ["var(--color-bg-normal)", "var(--color-bg-alert)", "var(--color-bg-warning)"]; export declare const minimalData: { colors: readonly ["var(--color-bg-normal)", "var(--color-bg-alert)", "var(--color-bg-warning)"]; groups: { groupName: string; values: number[]; }[]; threshold: { value: number; color: string; }; unit: string; }; export declare const withNegativeValueData: { colors: readonly ["var(--color-bg-normal)", "var(--color-bg-alert)", "var(--color-bg-warning)"]; groups: { groupName: string; values: (number | undefined)[]; }[]; unit: string; }; export declare const withThreeColumnsData: { colors: readonly ["var(--color-bg-normal)", "var(--color-bg-alert)", "var(--color-bg-warning)"]; groups: { groupName: string; values: number[]; }[]; unit: string; };