exporttypePath={prev:Path|undefined;key:string|number;};/** * Given a Path and a key, return a new Path containing the new key. */exportfunctionaddPath(prev:Path|undefined,key:string|number):Path;/** * Given a Path, return an Array of the path keys. */exportfunctionpathToArray(path:Path):Array<string|number>;