@arteneo/forge
Version:
11 lines (10 loc) • 834 B
TypeScript
import React from "react";
import { DialogProviderProps } from "../../contexts/Dialog";
import { DialogBatchProviderProps } from "../../contexts/DialogBatch";
import { DialogTitleSpecificProps } from "../../components/Dialog/DialogTitle";
import { DialogBatchContentSpecificProps } from "../../components/Dialog/DialogBatchContent";
import { DialogActionsSpecificProps } from "../../components/Dialog/DialogActions";
type DialogBatchProps = DialogTitleSpecificProps & DialogBatchContentSpecificProps & DialogActionsSpecificProps & Omit<DialogBatchProviderProps, "children"> & Omit<DialogProviderProps, "children">;
declare const DialogBatch: ({ results, children, batchProgressProps, title, titleVariables, onClose, actions, ...props }: DialogBatchProps) => React.JSX.Element;
export default DialogBatch;
export { DialogBatchProps };