import { Type } from '@angular/core'; import { Widget } from './widget'; export declare class StaticMedia extends Widget { value: string; widgetIcon: string; generatePublicUrl: boolean; showPrompt: boolean; height: string; isHidden: boolean; mainType: string; staticMediaFile: string; staticMedia: string; indent: string; fontSize: string; component: Type; constructor(field?: Widget); newStaticMedia(): void; /**function to create static-media object with existing values * *@param field * */ createStaticMedia(field: any): void; /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; }