importReactfrom'react';
import { AccordionProps } from'./Accordion.types';
/**
* The accordion component allows the user to show and hide sections of related content on a page.
*/declareconstAccordion: React.FC<AccordionProps>;
exportdefaultAccordion;