import { IAddress, IDebankProtocolExposure, IDebankTokenExposure } from '../../types'; export interface IDebankNormalizedResponse { subaccount: { positions: any[]; tokens: any[]; }; } export declare function parseVaultLevelDebank(debankRes: any, protocolExposure: IDebankProtocolExposure[], tokenExposure: IDebankTokenExposure[], borrower: IAddress, exposurePerCategory: any, netValue: any): { tokenMap: Record; protocolTokenMap: Record; protocolExposures: any; tokenExposures: any; loansExposure: { exposure: any[]; positions: any[]; }; }; export declare function getVaultExposure(debankResponse: any): { borrowing_exposure: { symbol: string; chain: string; amount: number; }[]; supplying_exposure: { symbol: string; chain: string; amount: number; }[]; wallet_exposure: { symbol: string; chain: string; amount: number; }[]; }; export declare function parseLoanLevelDebank(debankRes: any): { exposure: any[]; positions: any[]; };