import React from 'react';

interface CelebrationFlipProps {
    /** Main text to display (e.g., "4000 SUSCRIPTORES") */
    mainText: string;
    /** Secondary text to display (e.g., "¡GRACIAS!") */
    secondaryText: string;
    /** Primary color for main text */
    primaryColor?: string;
    /** Secondary color for hearts and secondary text */
    secondaryColor?: string;
    /** Animation duration in seconds */
    duration?: number;
    /** Custom CSS class name */
    className?: string;
}
declare const CelebrationFlip: React.FC<CelebrationFlipProps>;

export { CelebrationFlip };
export type { CelebrationFlipProps };
