import { default as React } from 'react'; import { InputProps } from './Input'; export type NumericProps = Omit & { labelIncrease?: string; labelDecrease?: string; }; export declare const Numeric: React.ForwardRefExoticComponent & { labelIncrease?: string; labelDecrease?: string; } & React.RefAttributes>;