export declare class ErrorBankFeed { 'title'?: string; 'status'?: number; 'detail'?: string; 'type'?: ErrorBankFeed.TypeEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace ErrorBankFeed { enum TypeEnum { InvalidRequest, InvalidApplication, InvalidFeedConnection, DuplicateStatement, InvalidEndBalance, InvalidStartAndEndDate, InvalidStartDate, InternalError, FeedAlreadyConnectedInCurrentOrganisation } }