import { Input, NumericInput } from '@judo/model-api'; export interface NumericInputComponentProps { element: NumericInput | Input; readOnly?: boolean; value?: number | null; onChange?: (value: number | null) => void; error?: string; disabled?: boolean; judoClassName?: string; } /** * Numeric input component using react-number-format. * Provides locale-aware formatting with debounced value changes. */ export declare function NumericInputComponent({ element, readOnly, value, onChange, error, disabled, judoClassName, }: NumericInputComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=NumericInputComponent.d.ts.map