import { InstancedMeshProps } from "@react-three/fiber"; import React, { ReactNode } from "react"; import { InstancedBufferGeometry, InstancedMesh, ShaderMaterial } from "three"; export declare type ParticlesProps = InstancedMeshProps & { children?: ReactNode; maxParticles?: number; safetySize?: number; }; export declare type Particles = InstancedMesh; export declare const Particles: React.ForwardRefExoticComponent & React.RefAttributes>;