import { NetworkType } from 'nem2-sdk';
import { HashFunction } from './HashFunction';
export declare class KECCAK512 extends HashFunction {
    constructor();
    signedHashing(data: string, signerPrivateKey: string, networkType: NetworkType): string;
}
