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