import React from "react";
import { DialogContentProps as MuiDialogContentProps } from "@mui/material";
import { DialogBatchProgressProps } from "../../components/Dialog/DialogBatchProgress";
import ResolveDialogPayloadType from "../../definitions/ResolveDialogPayloadType";
interface DialogBatchContentSpecificProps {
    children: ResolveDialogPayloadType<React.ReactNode>;
    batchProgressProps?: DialogBatchProgressProps;
}
type DialogBatchContentProps = DialogBatchContentSpecificProps & Omit<MuiDialogContentProps, "children">;
declare const DialogBatchContent: ({ children, batchProgressProps, ...props }: DialogBatchContentProps) => React.JSX.Element;
export default DialogBatchContent;
export { DialogBatchContentSpecificProps, DialogBatchContentProps };
