UNPKG

@arteneo/forge

Version:
14 lines (13 loc) 861 B
import React from "react"; import { AlertProps } from "@mui/material"; import TranslateVariablesInterface from "../../definitions/TranslateVariablesInterface"; import { DialogBatchFormMultiProps } from "../../components/Dialog/DialogBatchFormMulti"; import ResolveDialogPayloadType from "../../definitions/ResolveDialogPayloadType"; interface DialogBatchFormMultiAlertFieldsetProps extends Omit<DialogBatchFormMultiProps, "children"> { label: ResolveDialogPayloadType<string>; labelVariables?: ResolveDialogPayloadType<TranslateVariablesInterface>; alertProps?: AlertProps; } declare const DialogBatchFormMultiAlertFieldset: ({ formProps, label, labelVariables, alertProps, ...props }: DialogBatchFormMultiAlertFieldsetProps) => React.JSX.Element; export default DialogBatchFormMultiAlertFieldset; export { DialogBatchFormMultiAlertFieldsetProps };