export declare enum KeyringControllerErrorMessage { NoKeyring = "KeyringController - No keyring found", KeyringNotFound = "KeyringController - Keyring not found.", UnsafeDirectKeyringAccess = "KeyringController - Returning keyring instances is unsafe", WrongPasswordType = "KeyringController - Password must be of type string.", WrongEncryptionKeyType = "KeyringController - Encryption key must be of type string.", InvalidEmptyPassword = "KeyringController - Password cannot be empty.", NoFirstAccount = "KeyringController - First Account not found.", DuplicatedAccount = "KeyringController - The account you are trying to import is a duplicate", VaultError = "KeyringController - Cannot unlock without a previous vault.", VaultDataError = "KeyringController - The decrypted vault has an unexpected shape.", UnsupportedEncryptionKeyExport = "KeyringController - The encryptor does not support encryption key export.", UnsupportedGenerateRandomMnemonic = "KeyringController - The current keyring does not support the method generateRandomMnemonic.", UnsupportedExportAccount = "`KeyringController - The keyring for the current address does not support the method exportAccount", UnsupportedRemoveAccount = "`KeyringController - The keyring for the current address does not support the method removeAccount", UnsupportedSignTransaction = "KeyringController - The keyring for the current address does not support the method signTransaction.", UnsupportedSignMessage = "KeyringController - The keyring for the current address does not support the method signMessage.", UnsupportedSignPersonalMessage = "KeyringController - The keyring for the current address does not support the method signPersonalMessage.", UnsupportedSignEip7702Authorization = "KeyringController - The keyring for the current address does not support the method signEip7702Authorization.", UnsupportedGetEncryptionPublicKey = "KeyringController - The keyring for the current address does not support the method getEncryptionPublicKey.", UnsupportedDecryptMessage = "KeyringController - The keyring for the current address does not support the method decryptMessage.", UnsupportedSignTypedMessage = "KeyringController - The keyring for the current address does not support the method signTypedMessage.", UnsupportedGetAppKeyAddress = "KeyringController - The keyring for the current address does not support the method getAppKeyAddress.", UnsupportedExportAppKeyForAddress = "KeyringController - The keyring for the current address does not support the method exportAppKeyForAddress.", UnsupportedPrepareUserOperation = "KeyringController - The keyring for the current address does not support the method prepareUserOperation.", UnsupportedPatchUserOperation = "KeyringController - The keyring for the current address does not support the method patchUserOperation.", UnsupportedSignUserOperation = "KeyringController - The keyring for the current address does not support the method signUserOperation.", UnsupportedVerifySeedPhrase = "KeyringController - The keyring does not support the method verifySeedPhrase.", MissingEip7702AuthorizationContractAddress = "KeyringController - The EIP-7702 Authorization is invalid. No contract address provided.", NoAccountOnKeychain = "KeyringController - The keychain doesn't have accounts.", ControllerLocked = "KeyringController - The operation cannot be completed while the controller is locked.", MissingCredentials = "KeyringController - Cannot persist vault without password and encryption key", MissingVaultData = "KeyringController - Cannot persist vault without vault information", ExpiredCredentials = "KeyringController - Encryption key and salt provided are expired", NoKeyringBuilder = "KeyringController - No keyringBuilder found for keyring", DataType = "KeyringController - Incorrect data type provided", NoHdKeyring = "KeyringController - No HD Keyring found", ControllerLockRequired = "KeyringController - attempt to update vault during a non mutually exclusive operation", LastAccountInPrimaryKeyring = "KeyringController - Last account in primary keyring cannot be removed", EncryptionKeyNotSet = "KeyringController - Encryption key not set", KeyringV2NotSupported = "KeyringController - The selected keyring does not support the KeyringV2 API.", CannotRemovePrimaryKeyring = "KeyringController - Cannot remove the primary keyring" } //# sourceMappingURL=constants.d.cts.map