/** * Error thrown when DateTime object is invalid * * @privateRemarks * For Luxon DateTime objects, when `dt.isValid` is false, `dt.invalidReason` and/or * `dt.invalidExplanation` will either be available or will be `null`. These values * are used to construct this Error's message. * * @category Errors */ export declare class InvalidDateTimeError extends Error { constructor(reason: string | null, explanation: string | null); } //# sourceMappingURL=InvalidDateTimeError.d.ts.map