import { IFormatter } from "../types";
export declare enum KpiFormatterTypes {
    Value = "Value"
}
export interface IKpiData {
    id?: string;
    value?: any;
    units?: string;
    label?: string;
    backgroundColor?: string;
    textColor?: string;
    fontSize?: string;
    numberFormat?: string;
    link?: string;
    margin?: number;
    [key: string]: any;
}
export interface IKpiConfiguration {
    interactive?: boolean;
    formatters?: IKpiFormattersConfiguration;
}
export type IKpiFormattersConfiguration = Partial<Record<KpiFormatterTypes | string, {
    formatter: IFormatter;
}>>;
export type IKpiFormatterProperties = Partial<Record<KpiFormatterTypes | string, any>>;
