import { RsaSize, HashAlg, KeyUse, PublicKey } from '../types.js'; export declare function makeKeypair(size: RsaSize, hashAlg: HashAlg, use: KeyUse): Promise; export declare function importPublicKey(base64Key: string, hashAlg: HashAlg, use: KeyUse): Promise; declare const _default: { makeKeypair: typeof makeKeypair; importPublicKey: typeof importPublicKey; }; export default _default;