UNPKG

box-ui-elements-mlh

Version:
10 lines (9 loc) 305 B
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;