import { Component, Entity } from "@galacean/engine"; import { AxisProps } from "./Type"; export declare class Axis extends Component { private _material; private _color; private _highLightColor; private _yellowColor; private _grayColor; constructor(entity: Entity); /** setup axis geometry */ initAxis(value: AxisProps): void; /** highlight axis */ highLight(): void; /** unhighligh axis */ unLight(): void; /** change axis color into yellow */ yellow(): void; /** change axis color into gray */ gray(): void; /** recover axis color */ recover(): void; /** change axis alpha */ alpha(v: number): void; }