import { Mesh2D } from '@turbox3d/renderer-pixi';
import * as PIXI from 'pixi.js';
interface IAxis2dProps {
    type?: 'front' | 'top' | 'left';
}
/** 坐标轴 2d 控件 */
export default class Axis2d extends Mesh2D<IAxis2dProps> {
    protected view: PIXI.Graphics;
    draw(): void;
}
export {};
