import { Type } from '@angular/core'; import { Widget } from './widget'; export declare class UniqueId extends Widget { component?: Type; widgetIcon: string; value: string; prefix: string; url: string; constructor(field?: UniqueId); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; newUniqueId(): void; /**function to create report object with existing values * *@param field * */ uniqueId(field: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; }