import { FormListProps } from "antd/lib/form"; import { NamePath } from "rc-field-form/lib/interface"; import { FC } from "react"; declare type TFormListProps = Partial & Pick; export interface IFormListProps extends TFormListProps { field: NamePath; } export declare const FormList: FC; export {};