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 BillPayPromoCardStack({ card, analytics, actions, isBillPayEnabled, dndProps, }: { actions: CardActions; card: CardData; isBillPayEnabled: boolean; analytics?: ClientAnalytics; dndProps?: DragAndDropProps; }): import("react/jsx-runtime").JSX.Element; export default BillPayPromoCardStack; export declare const MemoBillPayPromoCardStack: React.MemoExoticComponent;