type NumericPropTypes = { readonly autoFocus?: boolean; readonly customClass?: any; readonly disabled?: boolean; readonly divClass?: any; readonly input: any; readonly inputClass?: string; readonly label?: string; readonly left?: string; readonly meta: MetaProps; readonly onRegisterRef?: any; readonly optional?: boolean; readonly placeholder?: string; readonly precision?: number; readonly right?: string; readonly size?: number; readonly tabIndex?: number; readonly type: string; readonly value?: string; readonly formatValue: (raw: any, optional?: boolean) => string; readonly normalizeValue: (raw: string | null) => any; readonly onBlur?: () => void; readonly onChange?: (event: any) => void; readonly onKeyDown?: (event: any) => void; }; import React from "react"; import { MetaProps } from "src/types"; export declare const OldNumericTemplate: (props: NumericPropTypes) => React.JSX.Element; export {};