/**
 * Account information PNZ-API-CentreLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { Amount } from './amount';
export interface Balance {
    accountId: string;
    type: string;
    amount: Amount;
    creditLine: string[];
    dateTime: string;
    creditDebitIndicator: string;
}
export declare const balanceSchema: Schema<Balance>;
