export declare const PathUtils: { /** * Parses a list of dot-separated paths into an array of string arrays. * Removes any "0" character segments. * * @param list * @protected */ parsePaths: (list: string[]) => string[][]; parsePath: (path: string) => string[]; /** * Returns the last `count` common elements (shared path) among all given path arrays, * comparing from the end (i.e. common suffix). * * @param paths - An array of string arrays (paths) to compare. * @param count - The number of common elements (starting from the end) to return. * @returns An array containing the shared path elements in original order. */ commonSequenceReversed: (paths: string[][], count?: number) => string[]; /** * Returns the longest common prefix (sequence) among an array of string arrays. * @param paths - An array of string arrays. * @returns An array representing the common sequence. */ commonSequence: (paths: string[][]) => string[]; };