/** * Returns true if two ranges are equal, or false otherwise. Ranges are * considered equal if their start and end occur in the same container and * offset. * * @param {Range|null} a First range object to test. * @param {Range|null} b First range object to test. * * @return {boolean} Whether the two ranges are equal. */ export function isRangeEqual(a: Range | null, b: Range | null): boolean; //# sourceMappingURL=is-range-equal.d.ts.map