/** * remake-blocks — main entry point * * Re-exports the remark plugin, types, and Astro integration. * The Astro integration is also available from the `/astro` subpath * (`import remakeBlocks from "remake-blocks/astro"`), but is re-exported * here for backward compatibility with `import remakeBlocks from "remake-blocks"`. */ export { remarkRemakeBlocks, remarkCalloutBlocks, BUILTIN_CALLOUTS } from "./remark-remake-blocks.js"; export { escapeHtml, escapeAttribute, sanitizeColor } from "./remark-remake-blocks.js"; export { generateCss, generateMinimalThemeCss } from "./css-generator.js"; export { CLASSES, validateCustomCallouts, suggestSimilarType } from "./dx.js"; export type { CalloutClassName } from "./dx.js"; export { default } from "./astro.js"; export type { RemakeBlocksOptions, AstroRemakeBlocksOptions, CalloutConfig, CalloutType, BuiltinCalloutType, LucideIconName, ParsedCallout, CustomCalloutType, CalloutConfigMap, } from "./types.js"; //# sourceMappingURL=index.d.ts.map