import { type ReactNode } from 'react'; import { type InfiniteTreeListContextProps } from '../InfiniteTreeListContext'; type Props = Pick & { children: ReactNode; }; export declare const InfiniteTreeListContextProvider: ({ children, itemSkeleton, }: Props) => JSX.Element; export {};