import { File, FileFolderTree, Registry } from "../interfaces"; export declare function isDirectChild(parent: string, possibleChild: string): boolean; export declare function isChild(parent: string, possibleChild: string): boolean; export declare function arrayToTree(input: Array, root: string, appVersion?: string): FileFolderTree; export declare function addFilesToTree(tree: FileFolderTree, files: Array, specialFiles: Array, registry: Array, appVersion: string): FileFolderTree;