import { GetCandles } from '../../types/global'; export declare function getCandleStartDate(symbol: string): Promise; export declare function getBaseQuote(symbol: string): Promise<{ base: any; quote: any; }>; export declare function getCandles(getCandlesParams: GetCandles): Promise;