import type { Vec3 } from '../math'; type ArrowInstance = { position: Vec3; vector: Vec3; scale: number; color: string; }; type $$ComponentProps = { arrows: ArrowInstance[]; shaft_radius: number; arrow_head_radius: number; arrow_head_length: number; }; declare const ArrowInstances: import("svelte").Component<$$ComponentProps, {}, "">; type ArrowInstances = ReturnType; export default ArrowInstances;