export declare const SoapRuntime: { readonly Node: "node"; readonly Universal: "universal"; }; export type SoapRuntimeValue = (typeof SoapRuntime)[keyof typeof SoapRuntime]; export declare function detectSoapRuntime(isNode: boolean): SoapRuntimeValue;