import { type ApiCalendarParams } from "./models/ApiParams";
import { type Currency } from "./models/Currency";
import type { EconomicEvent } from "./models/EconomicEvent";
export interface Params extends ApiCalendarParams {
    currencies?: Currency[];
}
/**
 * Extract events from the widget
 * @param {Params} params - Parameters to send to the widget
 * @returns {EconomicEvent[]} - Array with all events extracted
 */
export declare function fetchEconomicEvents(params: Params): Promise<EconomicEvent[]>;
