import { Mime } from '../../mime'; import { Exporter } from './exporter'; import { Options } from '../../options'; export declare abstract class FileExporter implements Exporter { constructor(); export(rows: Array, options?: T): void; abstract createContent(rows: Array, options?: T): Promise; abstract getMimeType(): Mime; }