import { ExportResult } from '../ExportResult'; export interface Exporter { export(arg: T, resultCallback: (result: ExportResult) => void): void; } /** * @internal * Shared functionality used by Exporters while exporting data, including suppresion of Traces. */ export declare function _export(exporter: Exporter, arg: T): Promise; //# sourceMappingURL=exporter.d.ts.map