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