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