/**
 * Props for confetti effect.
 */
type ConfettiEffectProps = {
    /**
     * Unique identifier for this effect instance
     */
    effectId: string;
    /**
     * Callback when the effect completes
     */
    onComplete?: () => void;
};
/**
 * Confetti effect component
 * Renders falling confetti particles from the top of the screen
 *
 * @public exported from `@promptbook/components`
 */
export declare function ConfettiEffect(props: ConfettiEffectProps): import("react/jsx-runtime").JSX.Element;
export {};
