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