UNPKG

349 BTypeScriptView Raw
1import React from 'react';
2export interface TabContextType {
3 onSelect: any;
4 activeKey: any;
5 transition: any;
6 mountOnEnter: boolean;
7 unmountOnExit: boolean;
8 getControlledId: (key: any) => any;
9 getControllerId: (key: any) => any;
10}
11declare const TabContext: React.Context<TabContextType | null>;
12export default TabContext;