box-ui-elements-mlh
Version:
10 lines (9 loc) • 305 B
TypeScript
import * as React from 'react';
import { History } from 'history';
declare type Props = {
children: React.ReactNode;
history?: History;
initialEntries?: History.LocationDescriptor[];
};
declare const NavRouter: ({ children, history, ...rest }: Props) => JSX.Element;
export default NavRouter;