import { IWidgetOptions } from '../types/widgets'; /** * The step value for numeric widgets. * Use {@link IWidgetOptions.step2} if available, otherwise fallback to * {@link IWidgetOptions.step} which is scaled up by 10x in the legacy frontend logic. */ export declare function getWidgetStep(options: IWidgetOptions): number;