/// <reference types="react" />
import { FormItemsProps } from './types';
interface FormListProps {
    formListValue: FormItemsProps;
}
declare const FormList: ({ formListValue, }: FormListProps) => JSX.Element;
export default FormList;
