UNPKG

@arteneo/forge

Version:
15 lines (14 loc) 793 B
import React from "react"; import { AlertProps } from "@mui/material"; import TranslateVariablesInterface from "../../definitions/TranslateVariablesInterface"; import Optional from "../../definitions/Optional"; import { DialogBatchProps } from "../../components/Dialog/DialogBatch"; import ResolveDialogPayloadType from "../../definitions/ResolveDialogPayloadType"; interface DialogBatchAlertProps extends Optional<DialogBatchProps, "children"> { label: ResolveDialogPayloadType<string>; labelVariables?: ResolveDialogPayloadType<TranslateVariablesInterface>; alertProps?: AlertProps; } declare const DialogBatchAlert: ({ label, labelVariables, alertProps, ...props }: DialogBatchAlertProps) => React.JSX.Element; export default DialogBatchAlert; export { DialogBatchAlertProps };