/** * Apply step increment or decrement to a given value, ensuring it adheres to the specified step, min, and max constraints. * @internal */ export declare function applyStep(value: string | number | null, step: number | undefined, stepMultiplier: number | undefined, min: number | undefined, max: number | undefined, direction: 1 | -1): number | null | string;