/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { Core } from "../main.js"; import { ColumnType, Table } from "../tables/table.js"; export declare class TableHelper { private _core; constructor(core: Core); compatibleTypes(data: string[][], firstRow?: number, maxRows?: number): ColumnType[]; inferTypes(data: string[][], firstRow?: number, maxRows?: number): ColumnType[]; convertToObject(table: Table): { [key: string]: any; }[]; }