import { PublicKey, PublicKeyInitData } from "../../cryptography/publickey.mjs"; //#region src/keypairs/secp256r1/publickey.d.ts /** * A Secp256r1 public key */ declare class Secp256r1PublicKey extends PublicKey { static SIZE: number; private data; /** * Create a new Secp256r1PublicKey object * @param value secp256r1 public key as buffer or base-64 encoded string */ constructor(value: PublicKeyInitData); /** * Checks if two Secp256r1 public keys are equal */ equals(publicKey: Secp256r1PublicKey): boolean; /** * Return the byte array representation of the Secp256r1 public key */ toRawBytes(): Uint8Array; /** * Return the Sui address associated with this Secp256r1 public key */ flag(): number; /** * Verifies that the signature is valid for for the provided message */ verify(message: Uint8Array, signature: Uint8Array | string): Promise; } //#endregion export { Secp256r1PublicKey }; //# sourceMappingURL=publickey.d.mts.map