react-bootstrap
Version:
Bootstrap 5 components built with React
11 lines (10 loc) • 359 B
TypeScript
import * as React from 'react';
import { EventKey } from '@restart/ui/types';
interface NavContextType {
role?: string;
activeKey: EventKey | null;
getControlledId: (key: EventKey | null) => string;
getControllerId: (key: EventKey | null) => string;
}
declare const NavContext: React.Context<NavContextType | null>;
export default NavContext;