import { TActor } from '../../Actor'; import { ColorRepresentation, Mesh } from 'three'; import { Line2 } from '../../../../../node_modules/@types/three/examples/jsm/lines/Line2'; export declare function createLine(color: ColorRepresentation, width: number, positions: Array): Line2; export declare function createOutline(actor: TActor, color: ColorRepresentation, lineWidth: number): Line2; export declare function createBoundingBox(minX: number, minZ: number, maxX: number, maxZ: number, color?: ColorRepresentation, wireframe?: boolean, height?: number): Mesh;