@arteneo/forge
Version:
8 lines (7 loc) • 449 B
TypeScript
import React from "react";
import { ExternalGenericButtonDialogProps } from "../../components/Common/GenericButtonDialog";
import { DialogConfirmProps } from "../../components/Dialog/DialogConfirm";
type ButtonDialogConfirmProps = ExternalGenericButtonDialogProps<DialogConfirmProps>;
declare const ButtonDialogConfirm: (props: ButtonDialogConfirmProps) => React.JSX.Element;
export default ButtonDialogConfirm;
export { ButtonDialogConfirmProps };