/** * This file was auto-generated by Fern from our API Definition. */ import * as Vectara from "../index"; /** * A table in a document. */ export interface Table { /** The unique ID of the table within the document. */ id?: string; /** The title of the table. */ title?: string; /** The data of the table. */ data?: Vectara.Data; /** The description of the table. */ description?: string; }