import type { Rule } from 'antd/lib/form'; import type { FC } from 'react'; import 'antd/lib/form/style/index.css'; import 'antd/lib/input/style/index.css'; import './index.less'; interface IProps { name: string; label: string; rules?: Rule[]; placeholder?: string; } declare const Test: FC; export default Test;