import { SignatureProof } from "@notabene/javascript-sdk"; import { Hex, Bytes } from "ox"; export declare function verifyTIP191(address: string, message: string, proof: Hex.Hex): boolean; export declare function verifyPersonalSignTIP191(proof: SignatureProof): Promise; export declare function encode(data: Hex.Hex | Bytes.Bytes): Hex.Hex; export declare function getSignPayload(data: Hex.Hex | Bytes.Bytes): Hex.Hex;