import { ApiResponse } from 'apisauce'; import { ApiOPtions, HeadersArgs } from '../service'; import { IGetBanksParams, IGetUserBOParams, IEditAccountParams } from '../types'; import { ApiResponseItems, UserBO, Bank, AccountType, TaxPayerType } from '../models'; export declare class ApiGeneric { private options; private api; constructor(options?: ApiOPtions); getBanks(authorization: HeadersArgs, paramsObject: IGetBanksParams): Promise, any>>; getAccountTypes(authorization: HeadersArgs, paramsObject: IGetBanksParams): Promise, any>>; getTaxPayersTypes(authorization: HeadersArgs, countryId: number): Promise, any>>; getUserBOInfo(authorization: HeadersArgs, paramsObject: IGetUserBOParams): Promise, any>>; editUserBankAccount(authorization: HeadersArgs, userId: number, document: string, paramsObject?: IEditAccountParams): Promise, any>>; } //# sourceMappingURL=apiGeneric.d.ts.map