export declare class Balance { /** * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes). */ "currency": string; /** * The amount of the grant fee. */ "fee": number; /** * The grant amount that is paid out to the user for business financing. */ "principal": number; /** * The total amount of the grant that the user must repay. It is the sum of the fee amount and the principal amount. */ "total": 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(); }