import * as React from 'react';
import { History } from 'history';
type Props = {
    children: React.ReactNode;
    history?: History;
    initialEntries?: History.LocationDescriptor[];
};
declare const NavRouter: ({ children, history, ...rest }: Props) => React.JSX.Element;
export default NavRouter;
