///
import type { Node, DragActive } from './typings';
import type { ColumnApi, GridApi } from 'ag-grid-community';
interface ItemProps {
node: Node;
columnApi: ColumnApi;
api: GridApi;
level: number;
dragActive?: DragActive;
onEdit: (node: Node) => void;
onDelete: (node: Node) => void;
highlights: Set;
}
export default function ItemWrapper(props: Omit): JSX.Element;
export {};