import type { Root } from 'hast';
import type { Plugin } from 'unified';
/**
 * Rehype plugin that flattens <ul>/<ol> lists that appear *inside* table cells.
 * Each list item becomes text prefixed with a dash or index and separated by <br />.
 * This keeps tables valid in Markdown while preserving line-breaks and inline markup.
 */
declare const rehypeTables: Plugin<[], Root, Root>;
export default rehypeTables;
//# sourceMappingURL=rehype-tables.d.ts.map