import type { HexString, Keypair } from './types'; /** * Returns a object containing a `publicKey` & `secretKey` generated from the supplied secretKey. */ export declare function x25519PairFromSeed(seed: HexString | Uint8Array): Keypair; export declare function convertEd25519ToX25519(pair: Keypair): Keypair;