import type { TableConstructor } from "../../toolbox.js"; import { Table as BaseTable } from "../../toolbox.js"; import type { ITable, ITableReadBatch, ITableScanParams, ITableScanResponse, ITableWriteBatch } from "./types.js"; export declare class Table implements ITable { readonly table: BaseTable; constructor(params: TableConstructor); createWriter(): ITableWriteBatch; createReader(): ITableReadBatch; scan(params: ITableScanParams): Promise>; }