import type { FsPort } from "../ports/fs.ts"; export declare class NodeFs implements FsPort { read(path: string): Promise; write(path: string, content: string): Promise; exists(path: string): Promise; }