import type { FormItemProps as AntdFormItemProps } from 'antd'; import type { ValidatorRules } from '../validator'; export type FormItemProps = Record & Omit, 'name' | 'rules'> & { name?: AntdFormItemProps['name']; rules?: ValidatorRules; }; declare function Component(props: FormItemProps): import("react/jsx-runtime").JSX.Element; export default Component;