import React from 'react';
export interface ConfettiProps {
    initialPosition?: {
        x: number;
        y: number;
    };
    color?: string;
    index?: number;
    size?: number;
    /**
     * Duration of the animation in milliseconds
     * @default 6000
     */
    duration?: number;
}
export declare const Confetti: React.MemoExoticComponent<({ initialPosition, color, index, size, duration, }: ConfettiProps) => React.JSX.Element>;
