import type { Vec3 } from '../math'; type InstancedAtom = { position: Vec3; radius: number; color?: string; }; type $$ComponentProps = { atoms: InstancedAtom[]; sphere_segments?: number; ghost?: boolean; positions_only?: boolean; [key: string]: unknown; }; declare const InstancedAtoms: import("svelte").Component<$$ComponentProps, {}, "">; type InstancedAtoms = ReturnType; export default InstancedAtoms;