import { FormListProps } from 'antd/es/form';
import { FC } from 'react';
import { FROM_LIST } from '../../../Types';
export interface IFormList {
    ctype: typeof FROM_LIST;
    props: FormListProps;
}
declare const FormList: FC<IFormList>;
export default FormList;
