import type * as types from "./types"; import type { NumberFormatConfiguration } from "../numberUtilities"; export interface NumberRangeSlider extends types.ElementBase, types.EditableElement { /** Indicates the current value. */ readonly value: number[]; } /** * Constraints that the Number Range Slider enforces on the precision. */ export declare const numberFormatConfiguration: Partial;