import type { Sha512Wasm } from '../wasm';
import { Md } from './md';
export declare class Sha512 extends Md<Sha512Wasm> {
    protected static getMd(): Sha512;
    protected ensureContextAsync(): Promise<void>;
}
