/** Types */ type AnimationDirection = "up" | "down" | "right" | "left"; type ZeniCreditPromoCardKey = "preApprovedLimit" | "creditLimit" | "cashback" | "receiptMatching" | "categorization" | "noHiddenFees"; export interface AnimationAmountType { direction: AnimationDirection; stepCount: number; values: string[]; } export interface ZeniCreditCarouselPromoCard { headerAnimationData: AnimationAmountType[]; key: ZeniCreditPromoCardKey; prefix: string; showAnimation: boolean; title: string; header?: string; } declare function ZeniCreditPromoCardContent({ cardContent, showConfetti, isActive, animationData, }: Readonly<{ animationData: object | null; cardContent: ZeniCreditCarouselPromoCard; isActive: boolean; showConfetti: boolean; }>): import("react/jsx-runtime").JSX.Element; export default ZeniCreditPromoCardContent;