import { Quote } from './types';
declare const getStock: ({ ticker, apiKey }: {
    ticker: string;
    apiKey: string;
}) => Promise<Quote>;
declare const getStocks: ({ tickers, apiKey }: {
    tickers: string[];
    apiKey: string;
}) => Promise<Record<string, {
    quote: Quote;
}>>;
export { getStock, getStocks };
