import { Price } from '../order/Price';
/** Debt balance of the account */
export interface Balance {
    /**  */
    active: boolean;
    /** Amount of debts the account has */
    dueAmount: Price;
    /** Amount currently being processed */
    pendingAmount: Price;
    /** Reserved amount awaiting payment */
    todoAmount: Price;
    /** Unmatured amount for deferred payment term */
    unmaturedAmount: Price;
}
//# sourceMappingURL=Balance.d.ts.map