UNPKG

react-bootstrap

Version:

Bootstrap 5 components built with React

9 lines (8 loc) 272 B
import * as React from 'react'; import { SelectCallback } from '@restart/ui/types'; export interface AccordionContextValue { activeEventKey?: string; onSelect?: SelectCallback; } declare const context: React.Context<AccordionContextValue>; export default context;