import { Group, MeshBasicMaterial } from "three"; import { Styles } from "../../styles/theme"; interface Axes { meshGroup: Group; material: { arrowMaterial: MeshBasicMaterial; axesMaterial: MeshBasicMaterial; }; } export default function createAxes({ axes: { color, cylinderRadius, arrowRadius, arrowHeight, axesSegments }, sphere, }: Styles): Axes; export {};