import type { PropsWithChildren, ReactElement } from "react"; import React from "react"; import type { TreeMethods, TreeProps } from "../types"; type Props = PropsWithChildren & { treeRef: React.ForwardedRef; }>; export declare const TreeContext: React.Context<{}>; export declare const TreeProvider: (props: Props) => ReactElement; export {};