import type { ValuesType } from 'utility-types';
/**
 * Available hash algorithms.
 */
export declare const HashAlgorithm: {
    /** @deprecated */
    readonly MD5: "md5";
    readonly SHA256: "sha256";
    readonly NONE: "none";
};
export type HashAlgorithm = ValuesType<typeof HashAlgorithm> | null;
