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