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