/** * ESM Module Loader * * Main public entry point for loading MDX modules as ESM. * Delegates to extracted modules for import transformation, helpers, and module writing. * * @module build/transforms/mdx/esm-module-loader/loader */ import type { MDXModule } from "../types.js"; import type { ESMLoaderContext } from "./types.js"; export declare function loadModuleESM(compiledProgramCode: string, context: ESMLoaderContext): Promise; //# sourceMappingURL=loader.d.ts.map