export declare const ECDSA_PATTERNS: { secp256k1: { PRIVATE_KEY: RegExp; PUBLIC_KEY: RegExp; SIGNATURE: RegExp; }; }; /** * Key type specifies, which algorithm has to be used with a particular public key */ export declare enum KeyType { ED25519 = "Ed25519", RSA = "Rsa", Secp256k1 = "Secp256k1", Secp256r1 = "Secp256r1" }