import type { SymbolTable } from "../symbolTable.js"; import type { AgencyConfig } from "../config.js"; import type { AgencyProgram } from "../types.js"; import type { SpliceResult } from "../compiler/splice/types.js"; /** Per-call overrides. Only the editor sets these, to keep a runaway * generator from freezing a single-threaded language server. */ export type ExpandOptions = { wallClockMs?: number; /** The caller's symbol table, so the effect check does not crawl and parse * every reachable file again at each splice site. Callers that have one * should pass it; the check builds its own when they do not. */ symbolTable?: SymbolTable; }; export declare function expandSplices(program: AgencyProgram, hostPath: string, config?: AgencyConfig, options?: ExpandOptions): SpliceResult;