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