import React from 'react'; import './index.less'; import { SizeType } from 'antd/lib/config-provider/SizeContext'; export interface SelectAndInputNumProps { onChange: (val: any) => void; options: any[]; value: string; size?: SizeType; unitOptions?: Array<{ title: string; value: string; }>; } declare const SelectAndInputNum: React.FC; export default SelectAndInputNum;