/**
 * 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 {};
