import { UseTreeViewLazyLoadingParameter, UseTreeViewLazyLoadingReturn } from './useTreeViewLazyLoading.types'; /** * Hook for managing lazy loading functionality in TreeView components * Provides efficient data loading, caching, and state management for tree structures * * @param params - Configuration parameters for lazy loading * @returns API object with methods for loading items and checking loading/error states */ export declare const useTreeViewLazyLoading: (params: UseTreeViewLazyLoadingParameter) => UseTreeViewLazyLoadingReturn;