import { Type } from '@angular/core'; import { Widget } from './widget'; import { AudioVideoWidgetValue } from './widget-value/audio-video-widget-value'; export declare class Signature extends Widget { note: string; component: Type; value: string; widgetIcon: string; values: Array; constructor(field?: Widget); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; newSignature(): void; /**function to create link object with existing values * *@param field * */ signature(field: any): void; }