import React from "react";
import { ButtonDialogBatchAlertConfirmProps } from "../../../components/Common/ButtonDialogBatchAlertConfirm";
import Optional from "../../../definitions/Optional";
interface BatchAlertConfirmProps extends Omit<ButtonDialogBatchAlertConfirmProps, "dialogProps"> {
    dialogProps: Optional<ButtonDialogBatchAlertConfirmProps["dialogProps"], "results">;
}
declare const BatchAlertConfirm: ({ dialogProps, ...props }: BatchAlertConfirmProps) => React.JSX.Element;
export default BatchAlertConfirm;
export { BatchAlertConfirmProps };
