import { CardData } from '../../cardTypes'; import { HandleCardClick } from '../informationCard/InformationCards'; import { ReimbursementPromoCard } from './ReimbursementPromoCardContent'; declare function ReimbursementPromoCards({ card, data, handleCardNavigation, activeCardIndex, handleLearnMoreClick, isReimbursementEnabled, }: { activeCardIndex: number; card: CardData; data: ReimbursementPromoCard[]; handleCardNavigation: HandleCardClick; isReimbursementEnabled: boolean; handleLearnMoreClick: () => void; }): import("react/jsx-runtime").JSX.Element; export default ReimbursementPromoCards;