/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { IComponent } from "./component.js"; export declare class DebugAxes implements IComponent { private _isInitialized; private _indexCount; protected _vertices: ArrayBuffer; protected _indices: Uint16Array; get vertices(): ArrayBuffer; get indices(): Uint16Array; get indexCount(): number; get isInitialized(): boolean; initialize(): void; update(elapsedTime: number): void; private _createAxis; }