import { MilkdownPlugin } from '@milkdown/kit/ctx'; /** Platform `tr`; Milkdown GFM uses `table_header_row` / `table_row`. * Do NOT set `tableRole` — that overwrites Milkdown's entry in prosemirror-tables' * `tableNodeTypes` (last role wins) and breaks tableEditing/fixTables after we * widen `table` content to accept Platform rows for hydration. */ export declare const trCompatNode: import('@milkdown/utils').$NodeSchema<"tr">; /** Platform `th`; Milkdown GFM uses `table_header`. */ export declare const thCompatNode: import('@milkdown/utils').$NodeSchema<"th">; /** Platform `td`; Milkdown GFM uses `table_cell`. */ export declare const tdCompatNode: import('@milkdown/utils').$NodeSchema<"td">; export declare const platformTableCompatNodes: MilkdownPlugin[];