import type { EvalFs } from "../types.js"; export interface EvalSource { rootDir: string; } export declare function openSource(dir: string): Promise; export declare function openSource(dir: string, fs: EvalFs): Promise; export declare function emptySourceMessage(dir: string): string;