import CalendarType from '../types/CalendarType';
/**
 * @author Khalid H. Alharisi
 */
declare const fromGregorian: (calendarType: CalendarType, date: Date) => number[];
/**
 * @author Khalid H. Alharisi
 */
declare const toGregorian: (calendarType: CalendarType, y: number, m: number, d: number) => Date;
export { fromGregorian, toGregorian };
