import { BaseImporter } from './BaseImporter';
import { ImporterType } from './ImporterType';
import { Har } from '../types';
export declare class HARImporter extends BaseImporter<ImporterType.HAR> {
    private readonly SUPPORTED_HAR_VERSION;
    constructor();
    get type(): ImporterType.HAR;
    isSupported(spec: any): spec is Har;
}
