import { Mesh } from 'three'; import { Line2 } from 'three/examples/jsm/lines/Line2'; import { MeshBasicMaterial } from 'three'; import { LineMaterial } from 'three/examples/jsm/lines/LineMaterial'; export declare const yellowMaterial: MeshBasicMaterial; export declare const yellowLineMaterial: LineMaterial; export declare const TRANSFORM_CONTROLS_DEBUG = false; export declare const yellowLineMaterial_thin: LineMaterial; type GizmoMesh = Mesh | Line2; type GizmoTransform = [number, number, number] | null; type GizmoElement = [GizmoMesh, GizmoTransform?, GizmoTransform?, GizmoTransform?, string?]; type HelperCombine = Record; export type GizmoCombine = Record; /** * Rotate Z is on X axis */ export declare const gizmoCombine: GizmoCombine; export declare const pickerCombine: GizmoCombine; export declare const helperCombine: HelperCombine; export {};