import { Service } from './service'; import { Particle } from './particle'; export declare function getCurrentParticleId(): string | undefined; export declare function setCurrentParticleId(particle: string | undefined): void; export declare function enqueueParticle(particle: Particle): void; export declare function popParticle(): Particle | undefined; export declare function registerService(service: Service): void; export declare function deleteService(serviceId: string): boolean; export declare function getService(serviceId: string): Service | undefined; //# sourceMappingURL=globalState.d.ts.map