import { Pixi } from '../../alias/Pixi'; import { Point2D } from '../entity/Point2D.entity'; import { Line, Shape, ShapeType } from '../entity/Shape'; export declare const GraphicsHandler: { newShape(shape: Shape, color?: number): Pixi.Graphics; setPos(graphics: Pixi.Container, pos: Point2D, type: ShapeType): void; setColor(graphics: Pixi.Graphics, shape: Shape, color: number): Pixi.Graphics; newLine(line: Line, color?: number): Pixi.Graphics; };