import { default as React } from 'react'; import { ClientAnalytics } from '@zeniai/client-analytics'; import { CardData } from '../../cardTypes'; import { DragAndDropProps } from '../../common/Card'; import { InformationCard } from './InformationCardContent'; export declare const informationCardData: InformationCard[]; /** * Here goes the main component... */ declare function InformationCardStack({ card, analytics, dndProps, }: { card: CardData; analytics?: ClientAnalytics; dndProps?: DragAndDropProps; }): import("react/jsx-runtime").JSX.Element; export default InformationCardStack; export declare const MemoInformationCardStack: React.MemoExoticComponent;