import { Frame, MFrameProps } from "../elements"; import { GraphicsAdapter } from "./GraphicsAdapter"; export declare abstract class FrameGraphics { constructor(element: Frame); abstract enable(): void; abstract disable(): void; abstract setSrc(src: string | null, mFrameProps: MFrameProps): void; abstract setDebug(debug: boolean, mFrameProps: MFrameProps): void; abstract setLoadRange(loadRange: number | null, mFrameProps: MFrameProps): void; abstract setUnloadRange(unloadRange: number, mFrameProps: MFrameProps): void; abstract setMinX(minX: number | null, mFrameProps: MFrameProps): void; abstract setMaxX(maxX: number | null, mFrameProps: MFrameProps): void; abstract setMinY(minY: number | null, mFrameProps: MFrameProps): void; abstract setMaxY(maxY: number | null, mFrameProps: MFrameProps): void; abstract setMinZ(minZ: number | null, mFrameProps: MFrameProps): void; abstract setMaxZ(maxZ: number | null, mFrameProps: MFrameProps): void; abstract dispose(): void; } //# sourceMappingURL=FrameGraphics.d.ts.map