import React from "react"; declare type Props = { correct?: boolean; children: React.ReactNode; }; declare const NumericInput: ({ correct, children }: Props) => JSX.Element; export default NumericInput;