import { RestrictionRange } from '@overture-stack/lectern-dictionary'; /** * Convert a RestrictionRange object to a simple string representation. * * @example * const range = { exclusiveMin: 0, max: 10 }; * rangeToText(range); // "> 0 and <= 10" * * @param range * @returns */ export declare const rangeToText: (range: RestrictionRange) => string;