import type { InputNumberProps as AntInputNumberProps } from 'antd'; import { Form, InputNumber as AntInputNumber } from 'antd'; import type { BaseElementProps } from './types'; const { Item: FormItem } = Form; export default function InputNumber({ setValue, status, isValid, help, ...props }: BaseElementProps) { return ( ); } type InputNumberProps = AntInputNumberProps; export type { InputNumberProps };