/** * @param {string} pem * @param {string} [passphrase] * @returns {Promise} */ export function readPemED25519(pem: string, passphrase?: string): Promise; /** * @param {string} pem * @param {string} [passphrase] * @returns {Promise} */ export function readPemECDSA(pem: string, passphrase?: string): Promise; /** * @param {string} pem * @param {string} [passphrase] * @returns {Promise} */ export function read(pem: string, passphrase?: string): Promise; import Ed25519PrivateKey from "../Ed25519PrivateKey.js"; import EcdsaPrivateKey from "../EcdsaPrivateKey.js";