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