interface ModalProps {
    title: string;
    text: string;
    icon?: JSX.Element;
}
declare const Modal: React.FC<ModalProps>;
export default Modal;
