import { CalendarDate } from '../types'; /** * Gets the current date in the specified calendar and timeZone. * * @param calendarToUse the calendar to use * @param timeZone the timeZone to use * @returns a plain `{ year, month, day, eraYear? }` object for the current * date in the specified calendar - no Temporal (or other date-engine) types * attached, matching `convertFromIso8601`/`convertToIso8601`. Note: unlike * previous versions, this no longer carries time-of-day/timezone * information - the timeZone parameter is only used to resolve which * calendar date is "now". */ declare const getNowInCalendar: (calendarToUse?: string, timeZone?: string) => CalendarDate; export default getNowInCalendar;