Dashboard sipadu mbip
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.

1234567891011121314151617181920
  1. import * as React from 'react';
  2. import AccordionCollapse from './AccordionCollapse';
  3. import AccordionToggle from './AccordionToggle';
  4. import { BsPrefixComponent } from './helpers';
  5. export interface AccordionProps {
  6. activeKey?: string;
  7. defaultActiveKey?: string;
  8. }
  9. declare class Accordion<
  10. As extends React.ElementType = 'div'
  11. > extends BsPrefixComponent<As, AccordionProps> {
  12. static Toggle: typeof AccordionToggle;
  13. static Collapse: typeof AccordionCollapse;
  14. }
  15. export default Accordion;