import type { CryptoUtils } from "./utils"; export type HttpSCRAMAuth = (baseUrl: string, username: string, password: string) => Promise; export declare function getHTTPSCRAMAuth(cryptoUtils: CryptoUtils): HttpSCRAMAuth;