import { ExporterType } from './Type'; export interface Exporter { readonly type: ExporterType; export(elements: Array): Blob; }