import { RichTreeViewState } from "../../RichTreeViewStore/index.js"; export declare const lazyLoadingSelectors: { /** * Checks if the lazy loaded state is empty. */ isEmpty: (state: RichTreeViewState) => boolean; /** * Checks whether an item is loading. */ isItemLoading: (state: RichTreeViewState, itemId: string | null) => boolean; /** * Checks whether an item has errors. */ itemHasError: (state: RichTreeViewState, itemId: string | null) => boolean; /** * Get an item error. */ itemError: (state: RichTreeViewState, itemId: string | null) => Error | null | undefined; };