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