import { Hilo, RangeLike, RangeOptionsOrLoose, SemVerLike } from "../types.mjs"; //#region src/ranges/outside.d.ts /** * Return true if the version is outside the bounds of the range in either the high or low direction. * The hilo argument must be either the string '>' or '<'. (This is the function called by gtr and ltr.) */ declare function outside(version: SemVerLike, range: RangeLike, hilo: Hilo, optionsOrLoose?: RangeOptionsOrLoose): boolean; //#endregion export { outside };