import { Type } from '@angular/core'; import { Widget } from './widget'; export declare class Counter extends Widget { component?: Type; value: number; widgetIcon: string; constructor(field?: Counter); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; newCounter(): void; /**function to create counter object with existing values * *@param field * */ counter(field: any): void; createValidators(): void; /** * Create FormControl for widget */ createFormControl(): void; }