/** * The `` and `` components are used together to display a list of content * sections that can be toggled open by clicking the respective title of each section. */ export function Accordion({ className, ...rest }: { [x: string]: any; className: any; }): React.FunctionComponentElement>>; export namespace Accordion { namespace propTypes { let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';