import { GetMeshSourceOptions, MeshHandler, YamlConfig } from '@graphql-mesh/types';
export default class SoapHandler implements MeshHandler {
    private config;
    private baseDir;
    private fetchFn;
    private wsdlResponse;
    private importFn;
    private logger;
    constructor({ config, baseDir, fetchFn, store, importFn, logger }: GetMeshSourceOptions<YamlConfig.SoapHandler>);
    getMeshSource(): Promise<{
        schema: import("graphql").GraphQLSchema;
    }>;
}
