import type { TableData } from '../types.js';
/**
* Detect generic repeated-sibling
/ listings — ranked feeds, result
* lists, leaderboards rendered as bullet/numbered lists — and emit them as
* TableData, one row per item. Each row captures the item's anchor href and
* any typed numeric metrics (points / comments / counts). Purely structural:
* NO site-specific class or tag is special-cased. Bare nav/prose lists (no
* anchors + metrics, non-uniform shape, or below the >=3 gate) yield nothing.
*/
export declare function detectListTables(html: string): TableData[];
export declare function detectListTablesFromDoc(doc: Document): TableData[];
//# sourceMappingURL=list.d.ts.map