import { type FlatBufferStreamIngestStats, type FlatSqlRuntimeStore } from 'space-data-module-sdk/runtime-host'; export interface ChannelFlatSqlIngestor { rows: FlatSqlRuntimeStore; pushChunk(chunk: Uint8Array | ArrayBuffer | ArrayBufferView): number; finish(): 0; stats(): FlatBufferStreamIngestStats; } export interface ChannelFlatSqlIngestorOptions { rows?: FlatSqlRuntimeStore; } export declare function createChannelFlatSqlIngestor(options?: ChannelFlatSqlIngestorOptions): ChannelFlatSqlIngestor; //# sourceMappingURL=channel-ingest.d.ts.map