import { Component } from 'react'; interface Props { onClose: () => void; isOpen: boolean; } declare class Modal extends Component { private modal; componentDidMount(): void; componentWillUnmount(): void; render(): JSX.Element; private onClose; private handleClick; private handleKeyPress; } export default Modal;