UNPKG

@arteneo/forge

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