import type StateCore from "markdown-it/lib/rules_core/state_core.mjs"; import type { LineMap, SlimComment } from "../types.js"; export interface CoreRuleOptions { lineHighlight?: boolean; } export interface ResolvedCommentData { lineMap: LineMap; comments: SlimComment[]; } export declare function installCoreRule(md: { core: { ruler: { push: (name: string, fn: (state: StateCore) => void) => void; }; }; }, resolveComments: (state: StateCore) => ResolvedCommentData | null, options?: CoreRuleOptions): void; //# sourceMappingURL=core.d.ts.map