import { CreditDebitIndicator } from './creditDebitIndicator'; export declare class StatementLine { 'postedDate'?: string; 'description'?: string; 'amount'?: number; 'creditDebitIndicator'?: CreditDebitIndicator; 'transactionId'?: string; 'payeeName'?: string; 'reference'?: string; 'chequeNumber'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }