import { ImporterType } from './ImporterType';
import { OpenAPIV3 } from '../types';
import { BaseOASImporter } from './BaseOASImporter';
export declare class OASV3Importer extends BaseOASImporter<ImporterType.OASV3> {
    private readonly SUPPORTED_OPENAPI_VERSION;
    constructor();
    get type(): ImporterType.OASV3;
    isSupported(spec: any): spec is OpenAPIV3.Document;
}
