import { FC } from "react"; import { DageTreeActionsProps } from "./types"; import { DageTreeTitle } from "./Title"; import { TreeActions } from "./style"; export const DageTreeActions: FC = ({ maxLevel, onAdd, onEdit, onDelete, ...props }) => { return ( // @ts-ignore ( )} /> ); }; export * from "./types"; export * from "./utils";