/// import { Transform, TransformCallback, TransformOptions } from 'stream'; import { ReindexMap } from '../utils'; export interface ApplyPlayernamesTransformOptions extends TransformOptions { reindexMap: ReindexMap[]; foreingKeyPrimaryColumn: string; foreignKeyColumns: string[]; } export declare class ApplyPlayernamesTransform extends Transform { private opts; constructor(opts: ApplyPlayernamesTransformOptions); _transform(chunk: Buffer, encoding: string, callback: TransformCallback): void; _flush(callback: TransformCallback): void; }