diff --git a/types/react-overlays/lib/Modal.d.ts b/types/react-overlays/lib/Modal.d.ts index c89c607e76..13a397f3b5 100644 --- a/types/react-overlays/lib/Modal.d.ts +++ b/types/react-overlays/lib/Modal.d.ts @@ -10,6 +10,8 @@ declare namespace Modal { } export = Modal; interface ModalProps extends TransitionCallbacks, PortalProps { + className?: string; + /** * Set the visibility of the Modal */ @@ -122,5 +124,5 @@ interface ModalProps extends TransitionCallbacks, PortalProps { * A ModalManager instance used to track and manage the state of open * Modals. Useful when customizing how modals interact within a container */ - manager: ModalManager; + manager?: ModalManager; }