import { NavType } from '../../../common/navigation/NavigationArrow'; import { CardData } from '../../cardTypes'; import { InformationCard } from './InformationCardContent'; export type HandleCardClick = (targetIndex: number, navType: NavType) => void; declare function InformationCards({ card, data, handleCardNavigation, activeCardIndex, }: { activeCardIndex: number; card: CardData; data: InformationCard[]; handleCardNavigation: HandleCardClick; }): import("react/jsx-runtime").JSX.Element; export default InformationCards;