import { FC } from "react";
import type { TreeProps as AntdTreeProps } from "antd/es/tree";
import "./style.scss";
export type TreeProps = AntdTreeProps;
declare const Tree: FC<TreeProps>;
export default Tree;
