@arteneo/forge
Version:
14 lines (13 loc) • 861 B
TypeScript
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 };