export declare class Balance {
    /**
    * The balance available for use.
    */
    "available": number;
    /**
    * The sum of the transactions that have already been settled.
    */
    "balance": number;
    /**
    * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance.
    */
    "currency": string;
    /**
    * The sum of the transactions that will be settled in the future.
    */
    "pending"?: number;
    /**
    * The balance that will become the available balance after the pending balance is settled.  The pending available balance is equal to the lower of the following: - The `pending` balance - The `pending` balance plus the `available` balance.
    */
    "pendingAvailable"?: number;
    /**
    * The balance currently held in reserve.
    */
    "reserved": number;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
