import { default as React } from 'react'; export interface ConfettiProps { /** Whether to show the confetti animation */ show: boolean; /** Callback when animation completes */ onComplete?: () => void; /** Number of particles */ particleCount?: number; /** Animation duration in milliseconds */ duration?: number; /** Custom colors array */ colors?: string[]; /** Additional className for the container */ className?: string; } /** * Confetti Component * * Displays a celebratory confetti animation from the center of the screen. * Particles explode outward with physics-based movement. * * @example * ```tsx * setIsComplete(false)} /> * ``` * * @example * ```tsx * * ``` */ export declare const Confetti: React.FC; //# sourceMappingURL=confetti.d.ts.map