import { CategoryEntry } from '../types'; export interface UseCategoryNavigation { navigationPath: string[]; onNavigate: (item: CategoryEntry, level: number) => void; } export interface UseCategoryNavigationOptions { items: CategoryEntry[]; multiple?: boolean; defaultExpandedKeys?: string[]; } export declare function useCategoryNavigation({ items, multiple, defaultExpandedKeys, }: UseCategoryNavigationOptions): UseCategoryNavigation;