@arteneo/forge
Version:
10 lines (9 loc) • 513 B
TypeScript
import React from "react";
import { ButtonDialogBatchConfirmProps } from "../../../components/Common/ButtonDialogBatchConfirm";
import Optional from "../../../definitions/Optional";
interface BatchConfirmProps extends Omit<ButtonDialogBatchConfirmProps, "dialogProps"> {
dialogProps: Optional<ButtonDialogBatchConfirmProps["dialogProps"], "results">;
}
declare const BatchConfirm: ({ dialogProps, ...props }: BatchConfirmProps) => React.JSX.Element;
export default BatchConfirm;
export { BatchConfirmProps };