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