import { MMLColor } from "../color"; import { MPlaneProps, Plane } from "../elements"; import { GraphicsAdapter } from "./GraphicsAdapter"; export declare abstract class PlaneGraphics { constructor(element: Plane); abstract enable(): void; abstract disable(): void; abstract getCollisionElement(): G["collisionType"] | null; abstract setWidth(width: number, mPlaneProps: MPlaneProps): void; abstract setHeight(height: number, mPlaneProps: MPlaneProps): void; abstract setColor(color: MMLColor, mPlaneProps: MPlaneProps): void; abstract setOpacity(opacity: number, mPlaneProps: MPlaneProps): void; abstract setCastShadows(castShadows: boolean, mPlaneProps: MPlaneProps): void; abstract dispose(): void; } //# sourceMappingURL=PlaneGraphics.d.ts.map