import { HTMLElement } from "node-html-parser";
export declare type Row = {
cells: Cell[];
};
export declare type Cell = {
type: "td" | "th";
value: string;
};
export declare function getAttribute(element: HTMLElement, key: string, type?: "number" | "string"): T | undefined;
export declare function buildTable(rows: Row[]): string;
export declare function buildCodeblock(code: string, language: string): string;