import React, { Dispatch, SetStateAction } from "react"; interface ExpandedContextValue { isExpanded: boolean; setIsExpanded: Dispatch> | undefined; } export declare const ExpandedContext: React.Context; export interface AccordionProps extends React.HTMLAttributes { expanded?: boolean; children: React.ReactElement[] | React.ReactElement; } declare const Accordion: React.ForwardRefExoticComponent>; export default Accordion;