import React from 'react'; import { UIType } from '../../app'; interface IProps { title?: string; ui?: UIType; pageKey: string; history?: any; match?: any; pageAPI?: string; pageJSON: any[]; } export declare type EntryProps = IProps; declare function _Entry(props: EntryProps): JSX.Element; export declare const Entry: React.MemoExoticComponent; export {};