import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
import { NumericIndicatorStyles } from "../models";
import { IIcon } from "@omnia/fx-models";
export interface INumericIndicatorComponent {
    [name: string]: any;
    clickCallback: () => void;
    valueBind: number;
    label: string;
    style?: typeof NumericIndicatorStyles;
    height?: number;
    description?: string;
    color?: string;
    icon?: IIcon;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-numeric-indicator": TsxAllowUnknowProperties<INumericIndicatorComponent>;
        }
    }
}
