import { Subject } from 'rxjs';
export interface ICsvRow<T> {
    file: string;
    row: T;
}
export declare class ScanCsvDir<T> {
    dir: string;
    proc: Subject<ICsvRow<T>>;
    constructor(dir: string);
    run(): Promise<any>;
}
