import React from "react";
import Optional from "../../definitions/Optional";
import { DialogBatchAlertProps } from "../../components/Dialog/DialogBatchAlert";
import { DialogBatchButtonEndpointProps } from "../../components/Dialog/DialogBatchButtonEndpoint";
interface DialogBatchAlertConfirmProps extends Optional<DialogBatchAlertProps, "title"> {
    confirmProps: DialogBatchButtonEndpointProps;
}
declare const DialogBatchAlertConfirm: ({ confirmProps, ...props }: DialogBatchAlertConfirmProps) => React.JSX.Element;
export default DialogBatchAlertConfirm;
export { DialogBatchAlertConfirmProps };
