UNPKG

@promptbook/utils

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

19 lines (18 loc) 482 B
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 {};