/** Core */ import { Generic } from "cmf.core/src/core"; /** * BreadCrumbProcessed */ export interface PathProcessed { root: { text: string; index: number; }; pathWithoutRoot: string; pathFragments: { text: string; index: number; }[]; } /** * TreeView Utils */ export declare class TreeViewUtil extends Generic { /** * Process Path */ static processPath(path: string, separator: string, indexSeparator: string): PathProcessed; }