import { DateType } from './types';
/**
 * Check date values if within valid range.
 */
export declare function checkHijriRange(date: DateType): void;
/**
 * Check if Gregorian date is within valid range.
 */
export declare function checkGregorianRange(date: DateType): void;
