import { ReactNode } from "react"; import { TreeApi } from "../interfaces/tree-api"; import { TreeProps } from "../types/tree-props"; type Props = { treeProps: TreeProps; imperativeHandle: React.Ref | undefined>; children: ReactNode; }; export declare function TreeProvider({ treeProps, imperativeHandle, children, }: Props): import("react/jsx-runtime").JSX.Element; export {};