/// import { DFormProps } from '../DForm'; import type { DModalProps } from '../DModal/interface'; export type ModalFormProps = { modalProps: DModalProps & { onError?: (_error: any) => void; }; formProps: DFormProps & { values?: any; }; children?: React.ReactNode; }; declare const _default: (props: ModalFormProps) => import("react/jsx-runtime").JSX.Element; export default _default;