UNPKG

@promptbook/openai

Version:

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

19 lines (18 loc) 476 B
type HeartsEffectProps = { /** * Unique identifier for this effect instance */ effectId: string; /** * Callback when the effect completes */ onComplete?: () => void; }; /** * Hearts effect component * Renders floating hearts that rise from the bottom of the screen * * @public exported from `@promptbook/components` */ export declare function HeartsEffect(props: HeartsEffectProps): import("react/jsx-runtime").JSX.Element; export {};