export * from './engine.js';
import type { PathInfo, Runtime } from './types.js';
export declare const runtime: Runtime;
export declare function pathinfo(name: string): PathInfo;
export { join as joinPath } from './deps/jsr.io/@std/path/1.0.2/mod.js';
export { existsSync as fileExists } from './deps/jsr.io/@std/fs/1.0.1/mod.js';
export declare const cwd: string;
export declare function readFile(path: string): string | ReadableStream | Uint8Array;
export declare function writeFile(path: string, data: string): void;
