import type { Plugin } from "unified"; /** * Remark plugin that recognizes GitHub-style alert blockquotes. * * It annotates the blockquote with `data-mwc-alert` and injects a marker span * as the first child of the first paragraph. Inline markdown inside the * blockquote remains intact. * * Supports both: * - Marker only: * `> [!NOTE]` * `> Body` * - Marker with title on same line: * `> [!TIP] Title` * `> Body` * * If the marker and body are in the same paragraph, the plugin splits the * paragraph at the first newline so the title stays on its own line. * * @example * > [!NOTE] * > This is `code` */ export declare const remarkGithubAlerts: Plugin<[], any>; //# sourceMappingURL=remark-github-alerts.d.ts.map