/** * Thrown when a browse target is inside the root but does not exist on disk * (e.g. a mobile-cached path whose folder was since moved or deleted). Lets the * browse handler answer 404 instead of conflating it with an out-of-root 400. */ export declare class BrowsePathNotFoundError extends Error { constructor(message: string); } export declare function resolveBrowsePath(browseRoot: string, relativePath: string): Promise; export declare function listDirectories(absolutePath: string): Promise>; export declare function listFiles(absolutePath: string): Promise>; export declare function createDirectory(parentAbsolutePath: string, name: string): Promise; //# sourceMappingURL=browse.d.ts.map