UNPKG

266 BTypeScriptView Raw
1import React from 'react';
2interface NavContextType {
3 role?: string;
4 activeKey: any;
5 getControlledId: (key: any) => any;
6 getControllerId: (key: any) => any;
7}
8declare const NavContext: React.Context<NavContextType | null>;
9export default NavContext;