import { Signature, Transaction, HashType } from "./types";
/**
 * Verifies the transaction integrity against the provided signature.
 * @param signature
 * @param transaction
 * @param separator
 * @param hashType
 * @returns boolean
 */
export declare function verify({ signature, transaction, separator, hashType }: {
    signature: Signature;
    transaction: Transaction;
    separator: string;
    hashType?: HashType;
}): boolean;
