import React from "react"; interface AccordionProviderProps { id?: string; expandedItems: string[]; children: React.ReactNode; } type AccordionItemContext = { baseId: string; contentId: string; headingId: string; isExpanded: boolean; }; export declare const Context: React.Context; export declare const Provider: ({ children, expandedItems, id }: AccordionProviderProps) => React.JSX.Element; export {};