import { TransformMapOptions } from '../..'; export interface NDJSONMapOptions extends TransformMapOptions { inputFilePath: string; outputFilePath: string; mapperFilePath: string; limitInput?: number; limitOutput?: number; /** * @default 1000 */ logEveryInput?: number; /** * @default 100_000 */ logEveryOutput?: number; } /** * Unzips input file automatically, if it ends with `.gz`. * Zips output file automatically, if it ends with `.gz`. */ export declare function ndjsonMap(opt: NDJSONMapOptions): Promise;