import { PCExporter } from './../../model/exporters/Exporter'; import { PCExportConfiguration } from './../../engine/configuration/ExportConfiguration'; import { PCPulsarCIManager } from '../../pulsar/managers/PulsarCIManager'; import { PCPulsarExporterMode } from '../../pulsar/Pulsar'; export declare type ExportPack = { exporter: PCExporter; manager: PCPulsarCIManager; configuration: PCExportConfiguration; accessToken: string; }; export declare function executeExportPack(pack: ExportPack): Promise; export declare function newExportTestPack(mode: PCPulsarExporterMode): Promise;