import { Type } from '@angular/core'; import { Widget } from './widget'; import { UniqueIdComponent } from '../../../sculptor-lib/widgets/unique-id/unique-id.component'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; export declare class UniqueId extends Widget { component?: Type; value: string; helpText: string; url: string; name: string; markup: 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; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }