import type { HarExporterFactory, HarExporterOptions } from './HarExporterFactory';
import type { HarExporter } from './HarExporter';
import type { FileManager } from '../utils/FileManager';
import type { Logger } from '../utils/Logger';
export declare class DefaultHarExporterFactory implements HarExporterFactory {
    private readonly fileManager;
    private readonly logger;
    constructor(fileManager: FileManager, logger: Logger);
    create(options: HarExporterOptions): Promise<HarExporter>;
    private createSettings;
    private loadCustomProcessor;
}
