import Table from 'cli-table'; import { Database } from '../types'; export declare const defaultTableOptions: { chars: { top: string; 'top-mid': string; 'top-left': string; 'top-right': string; bottom: string; 'bottom-mid': string; 'bottom-left': string; 'bottom-right': string; left: string; 'left-mid': string; mid: string; 'mid-mid': string; right: string; 'right-mid': string; middle: string; }; style: { 'padding-left': number; 'padding-right': number; border: never[]; head: never[]; compact: boolean; }; } | { chars: { mid: string; 'left-mid': string; 'mid-mid': string; 'right-mid': string; top?: undefined; 'top-mid'?: undefined; 'top-left'?: undefined; 'top-right'?: undefined; bottom?: undefined; 'bottom-mid'?: undefined; 'bottom-left'?: undefined; 'bottom-right'?: undefined; left?: undefined; right?: undefined; middle?: undefined; }; style?: undefined; }; export declare const tableToString: (table: Table) => string; export declare function fieldToText(data: Database, object: any, field: string): string;