import React from 'react'; import Modal, { ModalBody, ModalCloseButton, ModalFooter, ModalHeader, ModalOverlay, ModalContent, IModalProps, } from './../Modal'; export interface IAlertDialogProps extends Omit { leastDestructiveRef: IModalProps['initialFocusRef']; } const AlertDialog = (props: IAlertDialogProps) => { const { leastDestructiveRef, ...rest } = props; return ; }; const AlertDialogContent = React.forwardRef(function AlertDialogContent( props: any, ref ) { return ; }); export { AlertDialog, AlertDialogContent, ModalBody as AlertDialogBody, ModalCloseButton as AlertDialogCloseButton, ModalFooter as AlertDialogFooter, ModalHeader as AlertDialogHeader, ModalOverlay as AlertDialogOverlay, };