export type CursorLocation = {
    index: number | null;
    level: number | null;
    parentId: string | null;
};
export type DragItem = {
    id: string;
};
