@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
22 lines (21 loc) • 520 B
TypeScript
/**
* 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 {};