import { Vector3 } from 'three'; interface RotationCircleProps { axis: 0 | 1 | 2; dir1: Vector3; dir2: Vector3; angle: number; initialAngle: number; scale: number; lineWidth: number; fixed: boolean; axisColors: [string | number, string | number, string | number]; opacity: number; depthTest: boolean; flipAxis1?: boolean; flipAxis2?: boolean; worldMode?: boolean; } export declare const RotationCircle: ({ axis, dir1, dir2, angle, initialAngle, scale, lineWidth, fixed, axisColors, opacity, depthTest, flipAxis1, flipAxis2, worldMode, }: RotationCircleProps) => import("react/jsx-runtime").JSX.Element; export {};