import * as React from 'react'; import { OmitPolyfill } from '../common'; import { InputProps } from '../Input'; import {PropsWithChildren} from "react"; export type NumberInputProps = OmitPolyfill & { strict?: boolean; hideStepper?: boolean; onChange?: (value: number | null) => void; }; export default class NumberInput extends React.PureComponent> {}