/** F13 — Filesystem monomers: MC_104–MC_111 (stubs) */ /** MC_104 — FS_STAT */ export declare const fsStat: (_path: string) => string; /** MC_105 — FS_MKDIR */ export declare const fsMkdir: (_path: string) => number; /** MC_106 — FS_RMDIR */ export declare const fsRmdir: (_path: string) => number; /** MC_107 — FS_DELETE */ export declare const fsDelete: (_path: string) => number; /** MC_108 — FS_RENAME */ export declare const fsRename: (_from: string, _to: string) => number; /** MC_109 — FS_LIST */ export declare const fsList: (_path: string) => string[]; /** MC_110 — FS_EXISTS */ export declare const fsExists: (_path: string) => boolean; /** MC_111 — FS_COPY */ export declare const fsCopy: (_from: string, _to: string) => number; //# sourceMappingURL=filesystem.d.ts.map