import { BinanceClient } from '../../../clients'; export interface CompositeIndexSymbolInformationStreamsResponse { eventTime: Date; symbol: string; price: number; composition: { baseAsset: string; weightInQuantity: number; weightInPercentage: number; }[]; } export declare function compositeIndexSymbolInformationStreams(client: BinanceClient, symbol: string, callback: (data: CompositeIndexSymbolInformationStreamsResponse, error?: any) => any): () => any;