import React from 'react'; import type { CommonPropsType, ICompRef } from '../../types'; import type { DataType } from '../../../configs/components/wd-form-detail'; export interface PropsType extends CommonPropsType { name?: string; value?: any; isPureArray?: boolean; disabled: boolean; readOnly: boolean; fieldAuth: string; hasInitValue: boolean; } import './style'; type TCompRef = ICompRef<{ addition: () => void; remove: (key: string) => void; }>; export declare const reorderContext: (data: any, name: any, isPureArray: any) => any; export declare const newContextItem: (childFormItem: any, name: any, isPureArray: any) => { index: number; _id: string; }; export declare const changeHandle: ({ type, name, data, childFormItem, isPureArray, params, }: { type: any; name: any; data: any; childFormItem: any; isPureArray: any; params: any; }) => any; declare const FormDetailCom: React.ForwardRefExoticComponent>; export default FormDetailCom; export interface WdFormDetailProps extends CommonPropsType, DataType { wrapClassName?: string; groupClassName?: string; }