import { Type } from '@angular/core'; import { Widget } from './widget'; import { AudioVideoWidgetValue } from './widget-value/audio-video-widget-value'; import { VideoComponent } from '../../../sculptor-lib/widgets/video/video.component'; import { PropertyPanelFieldMetadata } from '../common/property-panel-field'; export declare class Video extends Widget { component: Type; value: string; values: Array; allowedDocumentTypes: string[]; generatePublicUrl: boolean; maxSize: number; minSize: number; mainType: string; placeHolder: string; indent: string; widgetIcon: string; constructor(field?: Widget); /** * get widget value * * @returns */ getWidgetValue(): any; /** * Set widget Value * * @param value */ setWidgetValue(value: any): void; newVideo(): void; /**function to create video object with existing values * *@param field * */ video(field: any): void; /** * this will return serialize of widget */ getWidgetSerializedValue(): string; static getPropertyPanelFieldMetadata(target: any, key: string): PropertyPanelFieldMetadata; getPropertyPanelFieldUIProperties(): any; }