import { ThemeUIStyleObject } from 'theme-ui'; declare const NumericInput: ({ onUserInput, value, disabled, style, placeholder, }: { onUserInput?: (input: string) => void; value: string; disabled?: boolean; style?: ThemeUIStyleObject; placeholder?: string; }) => import("react").JSX.Element; export default NumericInput;