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