import { Type } from '@angular/core'; import { Widget } from './widget'; import { ImageWidgetValue } from './widget-value/image-widget-value'; import { ImageComponent } from '../../../sculptor-lib/widgets/image/image.component'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; export declare class AxImage extends Widget { component: Type; value: Array; allowedImageTypes: string[]; maxSize: number; minSize: number; showTimeStamp: boolean; generatePublicUrl: boolean; allowBrowsing: boolean; allowAnnotations: string; includeNotes: boolean; allowPublicUrl: boolean; publicUrls: string[]; widgetIcon: string; constructor(field?: Widget); /** * get widget value * * @returns */ getWidgetValue(): any; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; newImage(): void; /**function to create Image object with existing values * *@param field * */ image(field: any): void; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }