import { default as moment, Moment } from 'moment-hijri'; import { TimeParts } from '../types/time-parts.js'; export declare const isSupportedDate: (date: Date | Moment) => boolean; export declare const fixSupportedDate: (date?: Date | Moment | null, locale?: string) => Date | undefined; export declare const fixSupportedMoment: (momentDate?: Moment | null, locale?: string) => Moment | undefined; export declare const getLocalizedMomentDate: (date?: Date | Moment | null, locale?: string) => moment.Moment; export declare const buildDateTime: (currentDate: Moment | Date, time: TimeParts, is12h?: boolean, locale?: string) => Moment; export declare const extractTimeParts: (date: Moment | Date | null | undefined, is12h?: boolean, locale?: string) => TimeParts | undefined; export declare const weekOfHijriYear: (date: Moment) => number; //# sourceMappingURL=dateHelpers.d.ts.map