export declare function clamp(number: number, { min, max }?: {
    min?: number;
    max?: number;
}): number;
