import type { Container } from "@tsparticles/engine";
export declare class FireworksInstance {
    #private;
    constructor(container: Container, id: string);
    get destroyed(): boolean;
    destroy(): void;
    pause(): void;
    play(): void;
    stop(): void;
}
