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