import { BinanceClient } from '../../../clients'; import { coinM } from '../../../info'; export interface OpenInterestResponse { symbol: string; pair: string; openInterest: number; contractType: coinM.ContractType; time: Date; } export declare function openInterest(client: BinanceClient, symbol: string): Promise;