import { SpriteMaterial } from 'three'; import { ParticleComponent } from '.'; import { ParticleJson } from './type'; import { GeometryPathJson } from '../../util/render/type'; declare const getParticleJson: (name?: string, path?: GeometryPathJson) => ParticleJson; declare const createParticle: (com: ParticleComponent) => SpriteMaterial; declare const updateParticle: (com: ParticleComponent) => void; export { createParticle, updateParticle, getParticleJson };