UNPKG

359 BTypeScriptView Raw
1import * as React from 'react';
2import { EventKey } from '@restart/ui/types';
3interface NavContextType {
4 role?: string;
5 activeKey: EventKey | null;
6 getControlledId: (key: EventKey | null) => string;
7 getControllerId: (key: EventKey | null) => string;
8}
9declare const NavContext: React.Context<NavContextType | null>;
10export default NavContext;