/** * This file was auto-generated by Fern from our API Definition. */ /** * A cell in a table. */ export interface Cell { /** A text value. */ textValue?: string; /** A signed 64-bit integer value. */ intValue?: number; /** A floating-point value with double precision. */ floatValue?: number; /** A boolean value. */ boolValue?: boolean; /** (Optional) The number of columns the cell spans. Default is 1. Must be greater than 0. */ colspan?: number; /** (Optional) The number of rows the cell spans. Default is 1. Must be greater than 0. */ rowspan?: number; }