export declare class Snowflakes {
    count: number;
    color: string;
    private container;
    private canvas;
    private ctx;
    private width;
    private height;
    private snowflakes;
    private animationId;
    private erd;
    private active;
    constructor(container?: HTMLElement);
    start(): void;
    pause(): void;
    toggle(): void;
    private init;
    private destroy;
    private setupTheSnow;
    private onResize;
    private update;
}
