UNPKG

298 BTypeScriptView Raw
1import * as React from 'react';
2export interface NavbarContextType {
3 onToggle: () => void;
4 bsPrefix?: string;
5 expanded: boolean;
6 expand?: boolean | string | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
7}
8declare const context: React.Context<NavbarContextType | null>;
9export default context;