/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * @hidden */ export declare const isPresent: (value: any) => boolean; /** * @hidden * * Fits the contender number into the specified bounds. * If the number is NaN or null, the minimum is returned. * * @param contender Represents the number you want to fit into the specified bounds. * @param min The inclusive lower bound number. * @param max The inclusive upper bound number. */ export declare const fitIntoBounds: (contender: number | undefined, min: number, max: number) => number;