import type { Interval } from "../_lib/types"; export interface Options { inclusive?: boolean | undefined; } export default function areIntervalsOverlapping(intervalLeft: Interval, intervalRight: Interval, options?: Options): boolean;