import { Type } from '@angular/core'; import { Widget } from './widget'; import { AudioVideoWidgetValue } from './widget-value/audio-video-widget-value'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; import { SignatureComponent } from '../../../sculptor-lib/widgets/signature/signature.component'; export declare class Signature extends Widget { note: string; helpText: string; component: Type; value: string; values: Array; name: string; markup: string; 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; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }