export interface IModalWrapperProps {
    alignment: "left" | "horizontal" | "center";
    hideCloseButton?: boolean;
    hideFooter?: boolean;
    hideHeader?: boolean;
    featuredIcon?: string | React.ReactNode;
    children: React.ReactNode;
    cancelButtonText?: string;
    submitButtonText?: string;
    handleClose?: () => void;
    handleSubmit?: () => void;
}
