import { RangeLike, RangeOptions } from "../types.mjs"; //#region src/ranges/subset.d.ts /** * Return true if the subRange range is entirely contained by the superRange range. */ declare function subset(sub: RangeLike, dom: RangeLike, options?: RangeOptions): boolean; //#endregion export { subset };