import { default as React } from 'react'; import { ClientAnalytics } from '@zeniai/client-analytics'; import { CardActions, CardData } from '../../cardTypes'; import { DragAndDropProps } from '../../common/Card'; /** * Here goes the main component... */ declare function ReimbursementPromoCardStack({ card, analytics, actions, isReimbursementEnabled, dndProps, }: { actions: CardActions; card: CardData; isReimbursementEnabled: boolean; analytics?: ClientAnalytics; dndProps?: DragAndDropProps; }): import("react/jsx-runtime").JSX.Element; export default ReimbursementPromoCardStack; export declare const MemoReimbursementPromoCardStack: React.MemoExoticComponent;