import { Entry } from "."; import { Dictionary } from "lodash"; /** * @hidden */ export declare class Table { name: string; count: number; entries: Dictionary; constructor(name: string, entries?: Dictionary); static isTable(object: any): object is Table; }