export interface InvoiceActionLedgerCardProps { invoiceId: string; limit?: number; className?: string; /** When true, render only the entries without the bordered section + title bar. */ bare?: boolean; } export declare function InvoiceActionLedgerCard({ invoiceId, limit, className, bare, }: InvoiceActionLedgerCardProps): import("react").JSX.Element; export interface PaymentSessionActionLedgerCardProps { paymentSessionId: string; limit?: number; className?: string; } export declare function PaymentSessionActionLedgerCard({ paymentSessionId, limit, className, }: PaymentSessionActionLedgerCardProps): import("react").JSX.Element; export declare const actionLedgerStatusVariant: Record; export declare const actionLedgerRiskVariant: Record;