import { Tab } from '../tab'; import { Table, MultiTable, Row } from '../models/table'; interface TableFormatOptions { usePip?: boolean; } export declare const formatOneRowResult: (tab: Tab, options?: RowFormatOptions) => (entity: Row) => HTMLElement; export declare const formatTable: (tab: Tab, response: Table | MultiTable, resultDom: HTMLElement, options?: TableFormatOptions) => void; export interface RowFormatOptions extends TableFormatOptions { excludePackageName?: boolean; useRepeatingEffect?: boolean; } export declare const formatTableResult: (tab: Tab, response: Table) => HTMLElement[]; export {};