import { ResizeLimits } from '../types'; /** * Clamps a width value to the given resize limits. * Always enforces a minimum of 0 to prevent invalid negative CSS values. */ export declare function clampWidth(width: number, limits: ResizeLimits): number; //# sourceMappingURL=clamp-width.d.ts.map