/** * Ambient typings for MDA text-module imports. * * The CLI inlines `import … from "./file.md" with { type: "text" }` into a * string constant at compile time. This declaration makes the same import * type-check in authoring projects without a local `*.md` ambient module. * * Pulled in via `types/index.d.ts` (the package `"types"` entry) so importing * `managed-deepagents` loads it automatically. */ declare module "*.md" { const content: string; export default content; }