import type { EvalDef, EvalFs, EvalSource } from "../types.js"; export declare function listEvals(source: EvalSource): Promise; export declare function listEvals(source: EvalSource, fs: EvalFs): Promise; export declare function loadEval(source: EvalSource, id: string): Promise; export declare function loadEval(source: EvalSource, id: string, fs: EvalFs): Promise; export declare function assertSafeEvalId(id: string): void;