import { BinanceClient } from '../../../clients'; export interface CompositeIndexSymbolInformationResponse { symbol: string; time: Date; baseAssetList: { baseAsset: string; weightInQuantity: number; weightInPercentage: number; }[]; } export declare function compositeIndexSymbolInformation(client: BinanceClient): Promise; export declare function compositeIndexSymbolInformation(client: BinanceClient, symbol: string): Promise;