import type { FormInstance } from 'antd'; import type { ModalFuncProps } from './open'; type OpenWithFormProps = Omit & { form: FormInstance; request: (values: T) => Promise; preheat?: () => Promise; }; declare const openWithForm: >({ content, form, request, preheat, ...config }: OpenWithFormProps) => void; export default openWithForm;