import type { Interval, Temporal } from "../types.js";
/**
 * Checks whether the given datetime is within the interval.
 * @param dateTime temporal object
 * @param interval interval
 * @returns Whether the given datetime is within the interval
 */
export declare function isWithinInterval<DateTime extends Temporal.Instant | Temporal.ZonedDateTime | Temporal.PlainDate | Temporal.PlainTime | Temporal.PlainDateTime | Temporal.PlainYearMonth>(dateTime: DateTime, interval: Interval<DateTime>): boolean;
//# sourceMappingURL=isWithinInterval.d.ts.map