UNPKG

@arteneo/forge

Version:
11 lines (10 loc) 563 B
import React from "react"; import Optional from "../../definitions/Optional"; import { DialogBatchProps } from "../../components/Dialog/DialogBatch"; import { DialogBatchButtonEndpointProps } from "../../components/Dialog/DialogBatchButtonEndpoint"; interface DialogBatchConfirmProps extends Optional<DialogBatchProps, "title"> { confirmProps: DialogBatchButtonEndpointProps; } declare const DialogBatchConfirm: ({ confirmProps, ...props }: DialogBatchConfirmProps) => React.JSX.Element; export default DialogBatchConfirm; export { DialogBatchConfirmProps };