import { JsonWebKey2020, Ed25519VerificationKey2018 } from './types'; export declare const toJsonWebKey2020: (id: string, controller: string, publicKey: Uint8Array, privateKey?: Uint8Array | undefined) => JsonWebKey2020; export declare const toX25519KeyAgreementKey2019: (id: string, controller: string, publicKey: Uint8Array, privateKey?: Uint8Array | undefined) => Ed25519VerificationKey2018; export declare const exportableTypes: { JsonWebKey2020: (id: string, controller: string, publicKey: Uint8Array, privateKey?: Uint8Array | undefined) => JsonWebKey2020; Ed25519VerificationKey2018: (id: string, controller: string, publicKey: Uint8Array, privateKey?: Uint8Array | undefined) => Ed25519VerificationKey2018; };