export declare const useAccordion: (initialActive?: string, multipleExpand?: boolean) => {
    activeSections: Set<string>;
    toggleSection: (sectionId: string) => void;
    isSectionActive: (sectionId: string) => boolean;
};
