import { BaseApi } from '../BaseApi'; export declare class SpotMarketApi extends BaseApi { fills(symbol: string, limit: string): Promise>; depth(symbol: string, limit: string, type: string): Promise>; ticker(symbol: string): Promise>; tickers(): Promise>; candles(symbol: string, period: string, after: string, before: string, limit: string): Promise>; }