UNPKG

@arteneo/forge

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