export interface UseDisclosureGroupNavigationProps { expandedKeys: Set; itemIds: string[]; onExpandedChange: (keys: Set) => void; allowsMultipleExpanded?: boolean; } export interface UseDisclosureGroupNavigationReturn { currentIndex: number; isPrevDisabled: boolean; isNextDisabled: boolean; onPrevious: () => void; onNext: () => void; } export declare function useDisclosureGroupNavigation({ allowsMultipleExpanded, expandedKeys, itemIds, onExpandedChange, }: UseDisclosureGroupNavigationProps): UseDisclosureGroupNavigationReturn;