import { EditorProperties } from "@iplusplus/y-model"; import { ControlData, ControlTypeInfo, Size } from "../types"; import * as createjs from "createjs-module"; import { TypedControl } from "../TypedControl"; export declare abstract class EmbeddedPageControl
extends TypedControl
{ internalUrl: string; shape: createjs.Shape; iframetag?: HTMLIFrameElement; constructor(props: P, controlTypeInfo: ControlTypeInfo, controlData?: ControlData); getDefaultSize(): Size; assembleComponents(): void; reDraw(): void; abstract getUrl(): string; startRun(): void; }