import type { MarkedExtension } from 'marked'; import type { SpanTableOptions } from './types'; /** * Adds support for extended tables in marked. * This extension enhances Markdown tables with advanced features: * - Row spanning with the `^` character * - Column spanning using multiple pipe characters `|` * - Multi-row headers * - Table captions using [Caption] syntax * - Column alignment using `:---:` syntax * @param options - Configuration options * @returns Marked extension object */ export default function markedExtendedTables(options?: SpanTableOptions): MarkedExtension; export type { SpanTableOptions, SpanTableToken, TableCell, TableRow } from './types';