///
import { DataType } from '../../type';
import { Duplex, DuplexOptions } from 'stream';
import { AsyncByteStream } from '../../io/stream';
import { RecordBatchWriter } from '../../ipc/writer';
/** @ignore */
export declare function recordBatchWriterThroughNodeStream(this: typeof RecordBatchWriter, options?: DuplexOptions & {
autoDestroy: boolean;
}): RecordBatchWriterDuplex;
/** @ignore */
declare type CB = (error?: Error | null | undefined) => void;
/** @ignore */
declare class RecordBatchWriterDuplex extends Duplex {
private _pulling;
private _reader;
private _writer;
constructor(writer: RecordBatchWriter, options?: DuplexOptions);
_final(cb?: CB): void;
_write(x: any, _: string, cb: CB): boolean;
_read(size: number): void;
_destroy(err: Error | null, cb: (error: Error | null) => void): void;
_pull(size: number, reader: AsyncByteStream): Promise;
}
export {};