import React from 'react'; import { Route } from 'react-router-dom'; export declare type PageRoute = React.ReactElement; interface Props { children?: PageRoute | any; } export declare const EasyRouter: ({ children }: Props) => JSX.Element; export {};