import { ReactNode } from 'react'; import { FormArrayOperation } from 'antd-mobile/es/components/form/form-array'; interface FormArrayWrapperProps { initialValue?: any[]; name: string | number | (string | number)[]; onAdd?: (operation: FormArrayOperation) => void; renderAdd?: ReactNode; renderHeader?: Function; renderChildren?: Function; __designMode?: string; } declare const _default: (props: FormArrayWrapperProps) => JSX.Element; export default _default;