import * as React from 'react'; import { RouteComponentProps } from 'react-router-dom'; interface Props { root: React.ComponentType> | React.ComponentType; loadingBoundary?: any; errorBoundary?: any; } declare const _default: ({ root, loadingBoundary, errorBoundary }: Props) => JSX.Element; export default _default;