import { NumericRange } from "@valuer/types"; export declare type Inclusiveness = boolean | boolean[]; export default function inRangeWithInclusiveness(range: NumericRange, value: number, inclusiveness?: Inclusiveness): boolean;