/// import { Filesystem } from "../api/filesystem"; export declare class LocalFilesystem extends Filesystem { private pwd; constructor(pwd: string); tryList(dirPath: string): string[]; tryRead(filename: string): Buffer; } export declare function pathDirname(filePath: string): string; export declare function pathBasename(filePath: string): string; export declare function pathJoin(...paths: string[]): string; export declare function splitPath(filePath: string): { dirname: string; basename: string; };