You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
349 B
11 lines
349 B
import * as React from 'react';
|
|
import { EventKey } from './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;
|