import { BinanceSignedClient } from '../../../clients'; export interface LendingAccountResponse { positionAmountVos: { amount: number; amountInBTC: number; amountInUSDT: number; asset: string; }[]; totalAmountInBTC: number; totalAmountInUSDT: number; totalFixedAmountInBTC: number; totalFixedAmountInUSDT: number; totalFlexibleInBTC: number; totalFlexibleInUSDT: number; } export declare function lendingAccount(client: BinanceSignedClient): Promise;