import type { RestrictionRange } from '@overture-stack/lectern-dictionary'; /** * Test if a number is within a range. Returns true when the number is within the range. * @param range * @param value * @returns */ export declare const isWithinRange: (range: RestrictionRange, value: number) => boolean;