import { BscScan } from "../client"; import { GetBNBLastPriceResponse, GetBNBTotalSupplyResponse, GetValidatorsResponse } from "../typings/stats"; declare class Stats { private client; constructor(client: BscScan); getBNBLastPrice(): Promise; getBNBTotalSupply(): Promise; getValidators(): Promise; private do; } export { Stats };