import type { GetMeshSourcePayload, MeshHandler, MeshHandlerOptions, MeshSource, YamlConfig } from '@graphql-mesh/types';
export default class SoapHandler implements MeshHandler {
    private name;
    private config;
    private soapSDLProxy;
    private baseDir;
    private importFn;
    private logger;
    constructor({ name, config, store, baseDir, importFn, logger }: MeshHandlerOptions<YamlConfig.SoapHandler>);
    getMeshSource({ fetchFn }: GetMeshSourcePayload): Promise<MeshSource>;
}
