import type { Extension } from 'micromark-util-types'; declare module 'micromark-util-types' { interface TokenTypeMap { jsxTable: 'jsxTable'; jsxTableData: 'jsxTableData'; } } /** * Micromark extension that tokenizes `...
` as a single flow block. * * Prevents CommonMark HTML block type 6 from matching `` (case-insensitive * match against `table`) and fragmenting it at blank lines. */ export declare function jsxTable(): Extension;