import { Vector3 } from 'three'; export declare function getRotationBySin(coord: number, fullRotation?: number, distance?: number): number; export declare function getRotationByCos(coord: number, fullRotation?: number, distance?: number): number; export declare enum RotationDirections { XY = "XY", YZ = "YZ", XZ = "XZ" } export declare function getCircleRotation(rotateBy: RotationDirections, x: number, y: number, z: number, fullRotation: number | undefined, distance: number): Vector3 | never;