import FinnhubAPI from ".";
import { Quote } from "../interface";
interface GetQuote {
    symbol: string;
    context: FinnhubAPI;
}
/**
 * Get quote
 * https://finnhub.io/docs/api#quote
 * @param args
 */
export declare const getQuoteData: (args: GetQuote) => Promise<Quote>;
export {};
