/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface AccountBalance {
    /** The balance in cents. */
    balanceInCents?: bigint;
    /** The automatic balance in cents. */
    automaticBalanceInCents?: bigint | null;
    /** The remittance balance in cents. */
    remittanceBalanceInCents?: bigint | null;
    [key: string]: unknown;
}
export declare const accountBalanceSchema: Schema<AccountBalance>;
