import React from 'react'; import type { ChangeEvent, ComponentProps } from 'react'; export type NumericInputProps = Omit, 'className' | 'type' | 'value' | 'onChange'> & { value: string; onChange: (e: ChangeEvent) => void; /** Optional label above the input */ label?: string; /** Minimum value (stepper) */ min?: number; /** Maximum value (stepper) */ max?: number; /** Step for increment/decrement (default 1) */ step?: number; className?: string; }; export declare const NumericInput: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=NumericInput.d.ts.map