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