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