UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

10 lines (9 loc) 266 B
import React from 'react'; interface NavContextType { role?: string; activeKey: any; getControlledId: (key: any) => any; getControllerId: (key: any) => any; } declare const NavContext: React.Context<NavContextType | null>; export default NavContext;