import { CalendarSystem, CalendarType } from './types'; export * from './types'; export * from './engine'; /** * Get the calendar system object. * * @param {CalendarType} type Specify the calendar type. * @returns {object} returns the calendar instance. */ export declare function createCalendarSystem(type: CalendarType): CalendarSystem;