/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type ColumnTable from 'arquero/dist/types/table/column-table'; export interface RowsOptions { /** * Indicates whether to skip the column headers as first row. */ skipHeader?: boolean; /** * Indicates whether to save each cell value as a string. * Note that this just wraps in a template and does not attempt any formatting. */ stringify?: boolean; /** * Map of custom formatting functions per column. */ format?: Record any) | undefined>; } /** * Returns a table's rows as a two-dimensional array. * @param table - * @param options - * @returns */ export declare function rows(table: ColumnTable, options?: RowsOptions): any[][];