import type { Vec3 } from '../math'; import { T } from '@threlte/core'; import type { ComponentProps } from 'svelte'; type $$ComponentProps = ComponentProps & { position: Vec3; vector: Vec3; scale?: number; color?: string; shaft_radius?: number; arrow_head_radius?: number; arrow_head_length?: number; }; declare const Arrow: import("svelte").Component<$$ComponentProps, {}, "">; type Arrow = ReturnType; export default Arrow;