export type NumericTextSize = "sm" | "md" | "lg"; export type NumericTextFormat = "decimal" | "currency" | "percent"; export interface NumericTextOptions { selector: string; value?: number; min?: number; max?: number; step?: number; placeholder?: string; label?: string; helpText?: string; errorText?: string; prefix?: string; suffix?: string; disabled?: boolean; size?: NumericTextSize; showSteppers?: boolean; format?: NumericTextFormat; locale?: string; currency?: string; onChange?: (value: number | null) => void; onBlur?: (value: number | null) => void; hydrate?: boolean; } //# sourceMappingURL=NumericText.types.d.ts.map