import type { ExternalData } from "../common/ExternalData.js"; interface PathParams { additionalExternals?: ExternalData[]; dir: string; moduleName: string; pluginName: string; progress: boolean; version: string; } declare function loadParticlesPath(params: PathParams): unknown; export { loadParticlesPath };