import React from 'react';
export interface FireworkParticleProps {
    x: number;
    y?: number;
    finalPos: {
        x: number;
        y: number;
    };
    r?: number;
    color: string;
    autoHide?: boolean;
}
export declare const FireworkParticle: React.MemoExoticComponent<({ x, y, finalPos, r, color }: FireworkParticleProps) => React.JSX.Element>;
