import PropTypes from 'prop-types'; import React from 'react'; import { InternalRouter, NavigateOptions, RouterProviderContext } from './types'; declare type Props = { scope: string; children: React.ReactNode; }; export default class RouteScope extends React.Component { context: RouterProviderContext | null; __internalRouter: InternalRouter; static childContextTypes: { __internalRouter: PropTypes.Requireable; }; static contextTypes: { __internalRouter: PropTypes.Requireable; }; constructor(props: Props, context: RouterProviderContext); getChildContext(): RouterProviderContext; getScopedState: () => any; resolvePathFromState: (nextState: Record) => string; navigate: (nextState: Record, options?: NavigateOptions | undefined) => void; render(): JSX.Element; } export {}; //# sourceMappingURL=RouteScope.d.ts.map