import { Tables } from '@kui-shell/core/api/tables'; interface Pair { key: string; value: string; } export declare const preprocessTable: (raw: string[]) => Pair[][][]; export declare const formatTable: (command: string, verb: string, entityTypeFromCommandLine: string, options: any, preTable: Pair[][]) => Tables.Table; export {};