import { BinanceSymbol } from '../enums';
export interface IBinanceTicker24h {
    askPrice: string;
    askQty: string;
    bidPrice: string;
    bidQty: string;
    closeTime: number;
    count: number;
    firstId: number;
    highPrice: string;
    lastId: number;
    lastPrice: string;
    lastQty: string;
    lowPrice: string;
    openPrice: string;
    openTime: number;
    prevClosePrice: string;
    priceChange: string;
    priceChangePercent: string;
    quoteVolume: string;
    symbol: BinanceSymbol;
    volume: string;
    weightedAvgPrice: string;
}
