export declare const gaugeData: {
    group: string;
    value: number;
}[];
export declare const gaugeDataNoDelta: {
    group: string;
    value: number;
}[];
export declare const gaugeOptionsSemi: {
    title: string;
    resizable: boolean;
    height: string;
    width: string;
    gauge: {
        type: string;
        status: string;
    };
};
export declare const gaugeOptionsCircular: {
    title: string;
    resizable: boolean;
    height: string;
    gauge: {
        status: string;
        type: string;
    };
};
export declare const gaugeOptionsCircularNoDelta: {
    title: string;
    resizable: boolean;
    height: string;
    gauge: {
        type: string;
    };
    color: {
        scale: {
            value: string;
        };
    };
};
