import type Stripe from 'stripe'; export declare class CustomerBalanceTransaction { #private; constructor(transaction: Stripe.CustomerBalanceTransaction); /** * Get the total transaction amount. */ amount(): string; /** * Get the raw total transaction amount. */ rawAmount(): number; /** * Get the ending balance. */ endingBalance(): string; /** * Get the raw ending balance. */ rawEndingBalance(): number; /** * Format the given amount into a displayable currency. */ formatAmount(amount: number): string; /** * Return the related invoice ID for this transaction. */ invoiceId(): string | null; /** * Get the Stripe CustomerBalanceTransaction instance. */ asStripeCustomerBalanceTransaction(): Stripe.CustomerBalanceTransaction; }