import { DataInterface } from "./interfaces/data.interface";
import { HashVerifierCallbackFunction } from "./types/hash-verifier-callback.function";
export declare class Utils {
    static defaultDataToCheckString(data: DataInterface): string;
    static defaultHashVerifier(token: string, dataCheckString: string, hash: string, callback: HashVerifierCallbackFunction): void | Promise<void>;
}
