export interface UriNodeResource { id: string; uriPath: string; name: string; parentId: string; parent: UriNodeResource; childrenId: Set; children: Set; level: number; contentTypes: Set; } export declare enum UriContentType { PROCESS = 0, CASE = 1 }