import type * as types from "./types"; import type { NumberRef } from "../FormDefinition"; import type { NumberFormatConfiguration } from "../numberUtilities"; export interface Number extends types.ElementBase, types.EditableElement, types.ElementWithRequire { /** Indicates the current value. */ readonly value: NumberRef; } /** * Constraints that the Number element enforces on the bounds. */ export declare const numberFormatConfiguration: Partial;