import { SharedNonVerbalEntity } from './shared-non-verbal-entity.js'; import type { SharedNonVerbalEntityJson } from './shared-non-verbal-entity.js'; export interface TableJson extends SharedNonVerbalEntityJson { content?: string | null; format?: string | null; } export declare class Table extends SharedNonVerbalEntity { readonly content: string | null; readonly format: string | null; constructor(data?: TableJson); rdfClass(): string; toJSON(): TableJson; static fromJSON(data: TableJson): Table; } //# sourceMappingURL=table.d.ts.map