import { type ReactNode } from 'react'; export type InfiniteTreeListContextProps = { itemSkeleton: ReactNode; disabledIdList: Set; setDisabled: (itemId: string, disabled: boolean) => void; }; export declare const InfiniteTreeListContext: import("react").Context;