import { JsonWebKey2020, Ed25519VerificationKey2018 } from './types'; export declare const fromJsonWebKey2020: (k: JsonWebKey2020) => { publicKey: Uint8Array; privateKey?: Uint8Array | undefined; }; export declare const fromX25519KeyAgreementKey2019: (k: Ed25519VerificationKey2018) => { publicKey: Uint8Array; privateKey?: Uint8Array | undefined; }; export declare const importableTypes: any; export declare const importFromType: (k: any) => any;