import React from 'react'; import { PageSection } from '../../app'; interface IProps { style?: React.CSSProperties; title?: string; width?: number; contents: PageSection[]; pageKey: string; modalKey: string; forceUpdate: Function; history: any; match: any; } declare function _Modal(props: IProps): JSX.Element; export declare const Modal: typeof _Modal; export {};