UNPKG

@arteneo/forge

Version:
10 lines (9 loc) 558 B
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 };