import { IFileWriter } from './csv-writer'; export declare class BrowserFileWriter implements IFileWriter { private readonly path; constructor(path: string); write(string: string): Promise; }