import React from 'react'; import { Modal, IModalProps } from '../Modal'; import type { IBoxProps } from '../../primitives/Box'; import type { ICloseButtonProps } from '../CloseButton'; export interface IAlertDialogProps extends Omit { leastDestructiveRef: IModalProps['initialFocusRef']; } export type IAlertDialogComponentType = (( props: IAlertDialogProps ) => JSX.Element) & { Body: React.MemoExoticComponent<(props: IBoxProps) => JSX.Element>; CloseButton: React.MemoExoticComponent< (props: ICloseButtonProps) => JSX.Element >; Content: React.MemoExoticComponent<(props: IBoxProps) => JSX.Element>; Footer: React.MemoExoticComponent<(props: IBoxProps) => JSX.Element>; Header: React.MemoExoticComponent<(props: IBoxProps) => JSX.Element>; }; const AlertDialog = React.memo((props: IAlertDialogProps) => { const { leastDestructiveRef, ...rest } = props; return ( ); }); export default AlertDialog;