UNPKG

226 BTypeScriptView Raw
1import React from 'react';
2export interface NavbarContextType {
3 onToggle: () => void;
4 bsPrefix?: string;
5 expanded: boolean;
6}
7declare const context: React.Context<NavbarContextType | null>;
8export default context;