import type { Vec3 } from '../math'; import { T } from '@threlte/core'; import type { ComponentProps } from 'svelte'; type $$ComponentProps = ComponentProps & { from: Vec3; to: Vec3; color?: string; thickness?: number; opacity?: number; }; declare const Cylinder: import("svelte").Component<$$ComponentProps, {}, "">; type Cylinder = ReturnType; export default Cylinder;