declare class Sparkle { xpos: number; ypos: number; width: number; height: number; constructor(xpos: number, ypos: number, width: number, height: number); } export declare class Sparkles { sparkles: Sparkle[]; color: string; constructor(sparkles: Sparkle[], color: string); } type SparklesColor = { rgb: string; opacity_level1: string; opacity_level2: string; }; export declare function drawSparkles(sparkle_collection: Sparkles[], context: CanvasRenderingContext2D, ripple: HTMLSpanElement, ripple_width: number, sparklesColor?: SparklesColor, convLevel?: number, spaklesMaxCount?: number): void; export {};