/** * Snaps a finite value to a low-end-anchored step grid, then applies the * finite inclusive range clamp. The final clamp deliberately follows the * snap so a non-grid endpoint remains reachable. */ export declare function clampSteppedValue(raw:number,min:number,max:number,step:number):number;