import { CoreModel } from '../core/core.model'; export declare class GaugeModel extends CoreModel { /** * Maximum integer value of gauge */ max: number; /** * Type value of gauge. Can be: full, arch, semi. Default is full. */ type: string; /** * Aanimation duration of gauge in seconds */ size: number; /** * Current integer value of gauge */ value: number; /** * Label of gauge */ label: string; /** * Prefix of gauge */ prefix: string; /** * Suffix of gauge */ suffix: string; /** * Able gauge to input it value */ inputValue: boolean; /** * Size for width/height of gauge. It means number of pixels. */ animationDuration: number; /** * It is the constructor for the gauge component. It takes the required string values to create the gauge object */ constructor(values?: Object); }