UNPKG

rsuite

Version:

A suite of react components

8 lines (7 loc) 293 B
import React from 'react'; export interface NavContextProps { activeKey: string | number | undefined; onSelect?: (eventKey: string | number | undefined, event: React.SyntheticEvent) => void; } declare const NavContext: React.Context<NavContextProps | null>; export default NavContext;