box-ui-elements
Version:
Box UI Elements
12 lines (11 loc) • 401 B
TypeScript
import * as React from 'react';
import { History } from 'history';
import { type FeatureConfig } from '../feature-checking';
type Props = {
children: React.ReactNode;
features?: FeatureConfig;
history?: History;
initialEntries?: History.LocationDescriptor[];
};
declare const NavRouter: ({ children, features, history, ...rest }: Props) => React.JSX.Element;
export default NavRouter;