/**
 * The data type represented by a TableTemplate, or "Mixed".
 */
export declare enum TableColumnType {
    /**
     * Initial value.  Not useful by itself.
     */
    Unknown = 0,
    /**
     * Non-container and non-number.  Could be a mix of strings, booleans, nulls, and/or numbers (but not all numbers).
     */
    Simple = 1,
    /**
     * All values in the column are numbers or nulls.
     */
    Number = 2,
    /**
     * All values in the column are arrays or nulls.
     */
    Array = 3,
    /**
     * All values in the column are objects or nulls.
     */
    Object = 4,
    /**
     * Multiple types in the column - for instance, a mix of arrays and strings.
     */
    Mixed = 5
}
