import React from "react"; export interface Modal { /** * Custom css class name. */ className?: string; /** * Children */ children?: React.ReactNode; /** * Modal footer */ footer?: React.ReactNode; /** * Close click function */ handleClose?: any; /** * Modal close button */ hasCloseButton?: boolean; /** * Overlay div */ hasOverlay?: boolean; /** * Modal body ref */ modalref?: React.LegacyRef; /** * Subtitle of the modal */ subtitle?: React.ReactNode; /** * Title of the modal */ title?: React.ReactNode; }