import type { HexString } from '@polkadot/util/types'; /** * @name secp256k1Verify * @description Verifies the signature of `message`, using the supplied pair */ export declare function secp256k1Verify(msgHash: HexString | Uint8Array | string, signature: HexString | Uint8Array | string, publicKeyOrAddress: HexString | Uint8Array | string): boolean;