import { FMPClient } from "../FMPClient.js"; import type { ExchangeMarketHours, HolidayByExchange } from "./types.js"; export declare class MarketHoursClient extends FMPClient { /** * Get market hours for a specific exchange * @param exchange Exchange name/code */ getExchangeMarketHours(exchange: string): Promise; /** * Get holidays for a specific exchange * @param exchange Exchange name/code * @param from Optional Start date for the holidays * @param to Optional End date for the holidays */ getHolidaysByExchange(exchange: string, from?: string, to?: string): Promise; /** * Get market hours for all exchanges */ getAllExchangeMarketHours(): Promise; }