import { ChargeCardRepaymentWithUser, ID, PaymentHistoryAccountInfo } from '@zeniai/client-epic-state'; export interface ChargeCardPaymentHistoryRowSmallProps { isZeniTenant: boolean; repayment: ChargeCardRepaymentWithUser; accountInfo?: PaymentHistoryAccountInfo; isLastRow?: boolean; isLatestFailedPayment?: boolean; isLoading?: boolean; onRetryPaymentClick?: (repaymentId: ID) => void; } export declare const ChargeCardPaymentHistoryRowSmall: ({ repayment, accountInfo, isLastRow, isLatestFailedPayment, isLoading, isZeniTenant, onRetryPaymentClick, }: ChargeCardPaymentHistoryRowSmallProps) => import("react/jsx-runtime").JSX.Element;