import { ArcaServiceName } from "../../../application/types/service-name.types"; import { WSAuthParam } from "../../../application/types/auth.types"; import { WsdlPath } from "./wsdl-path.types"; import { Endpoint } from "./endpoints.types"; export interface ArcaServiceConfig { wsdlProduction: WsdlPath; wsdlTesting: WsdlPath; endpointProduction: Endpoint; endpointTesting: Endpoint; forceSoap12Headers?: boolean; authMapper?: (auth: WSAuthParam) => Record; excludeMethods?: string[]; } export declare const ArcaServiceConfigs: Partial>; export declare function getArcaServiceConfig(serviceName: ArcaServiceName): ArcaServiceConfig | undefined;