import { Type } from '@angular/core'; import { Widget } from './widget'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; import { StopwatchComponent } from '../../../sculptor-lib/widgets/stopwatch/stopwatch.component'; export declare class StopWatch extends Widget { component: Type; value: string; widgetIcon: string; isAllowPausing: boolean; formName: string; constructor(field?: StopWatch); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; newStopWatch(): void; /**function to create report object with existing values * *@param Report * */ stopwatch(field: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }