import { Table } from '../models/table'; interface Pair { key: string; value: string; valueDom: Element; css: string; } export declare const preprocessTable: (raw: string[]) => Promise<{ rows?: Pair[][]; trailingString?: string; }[]>; export declare const outerCSSForKey: { [key: string]: string; }; export declare const cssForKey: { [key: string]: string; }; export declare const cssForValue: { [key: string]: string; }; export declare const formatTable: (entityType: string, lines: Pair[][]) => Table; export {};