/**
 * Representation of supported query parameters used by the exchange rates API
 */
interface Queries {
    /**
     * Base currency to calculate conversions against
     */
    base?: string;
    /**
     * Array of currencies to have conversions returned for
     */
    symbols?: string;
    /**
     * Start date for historical exchange rates
     */
    start_at?: string;
    /**
     * End date for historical exchange rates
     */
    end_at?: string;
}
export { Queries };
//# sourceMappingURL=Queries.d.ts.map