import { HTMLTableStats } from './types'; import type { Node } from 'domhandler'; export default function extractHtmlAndStatsFromTableDomNode(domNode: Node | null): { html: string; stats: HTMLTableStats; };