import React from "react"; import { InjectedProps } from "./types"; interface Props extends InjectedProps { title: string; hideCloseButton?: boolean; onBack?: () => void; bodyPadding?: string; } declare const Modal: React.FC; export default Modal;