import { IdentityDto } from './../../shared/identity.dto'; import { EntityDto } from './../../entity/entity.dto'; import { AccountBalanceAmountDto } from './amount.dto'; import { AccountBalanceWalletDto } from './wallet/wallet.dto'; export declare class AccountBalanceDto { identity: IdentityDto; entity: EntityDto; type: string; currency: string; amounts: AccountBalanceAmountDto[]; credit: number; minimum: number; maximum: number; replenishmentAmount: number; wallet: AccountBalanceWalletDto; firstInFirstOut: boolean; unappliedPaymentAmount?: number; unpaidInvoiceAmount?: number; fundingType: string; version: number; errors?: any[]; constructor(d?: AccountBalanceDto); }