import * as PIXI from "pixi.js"; import { AntialiasTypeEnum } from "../Display.types"; export interface PixiRendererInitOptions { width: number; height: number; backgroundColor: string; view: HTMLCanvasElement; antialias: AntialiasTypeEnum; } export declare class PixiRenderer { app: PIXI.Application | null; stage: PIXI.Container | null; constructor(); init(options: PixiRendererInitOptions): void; render(): void; resize(width: number, height: number): void; destroy(): void; }