/**
 * Create an Apache Arrow table for an input table.
 * @param {import('../table/Table.js').Table} table
 *  An input Arquero table to convert to Arrow format.
 * @param {import('./types.js').ArrowFormatOptions} [options]
 *  Encoding options, including column data types.
 * @return {import('@uwdata/flechette').Table} An Arrow Table instance.
 */
export function toArrow(table: import("../table/Table.js").Table, options?: import("./types.js").ArrowFormatOptions): import("@uwdata/flechette").Table;
