import React, { FC } from 'react'; import type { FormItemProps } from 'antd/lib/form'; export interface FormListProps { name: string; label?: string; value?: Array; children?: React.ReactElement[]; } export declare const FormList: FC; export default FormList;