interface TreeList {
    parentId: string | null;
    id: string;
    children?: TreeList[];
}

export { TreeList };
