import { GetQuoteParams, GetQuoteResponse, GetLTPResponse, GetOHLCParams, GetOHLCResponse } from '../types'; import { GetLTPParams } from '../types/requests/GetLTPParams'; export declare class LiveData { private http; constructor(baseUrl: string); getQuote(params: GetQuoteParams): Promise; getLTP(params: GetLTPParams): Promise; getOHLC(params: GetOHLCParams): Promise; }