interface ISandboxRequireOptions { /** Console replacement injected into every sandbox module. */ console: Console | typeof globalThis.console | Record void>; } /** * Build a sandboxed `require` function over a runtime pack. Resolves typia / * `@typia/*` / randexp specifiers from the pack; throws on anything else so the * caller sees the unsupported dependency. */ export declare function createSandboxRequire(pack: Record, opts: ISandboxRequireOptions): (specifier: string) => unknown; export {};