import type { Quote } from "../types.js"; export interface QuoteArgs { ticker: string; } export declare function quote(args: QuoteArgs): Promise;