import { default as React } from 'react'; import { ClientAnalytics } from '@zeniai/client-analytics'; import { ReimbursementCardReport } from '@zeniai/client-epic-state'; import { CardActions, CardData } from '../../cardTypes'; import { DragAndDropProps } from '../../common/Card'; declare const ReimbursementCard: ({ card, data, actions, analytics, dndProps, }: { actions: CardActions; card: CardData; data: ReimbursementCardReport; analytics?: ClientAnalytics; dndProps?: DragAndDropProps; }) => import("react/jsx-runtime").JSX.Element; export default ReimbursementCard; export declare const MemoReimbursementCard: React.MemoExoticComponent<({ card, data, actions, analytics, dndProps, }: { actions: CardActions; card: CardData; data: ReimbursementCardReport; analytics?: ClientAnalytics; dndProps?: DragAndDropProps; }) => import("react/jsx-runtime").JSX.Element>;