@arteneo/forge
Version:
14 lines (13 loc) • 821 B
TypeScript
import React from "react";
import { AlertProps } from "@mui/material";
import TranslateVariablesInterface from "../../definitions/TranslateVariablesInterface";
import { DialogBatchFormProps } from "../../components/Dialog/DialogBatchForm";
import ResolveDialogPayloadType from "../../definitions/ResolveDialogPayloadType";
interface DialogBatchFormAlertFieldsetProps extends Omit<DialogBatchFormProps, "children"> {
label: ResolveDialogPayloadType<string>;
labelVariables?: ResolveDialogPayloadType<TranslateVariablesInterface>;
alertProps?: AlertProps;
}
declare const DialogBatchFormAlertFieldset: ({ formProps, label, labelVariables, alertProps, ...props }: DialogBatchFormAlertFieldsetProps) => React.JSX.Element;
export default DialogBatchFormAlertFieldset;
export { DialogBatchFormAlertFieldsetProps };