import { Bbs2023PrivateKeyPair, EcdsaSd2023PrivateKeyPair } from '../did-web/wellKnown/types.mjs'; import 'did-resolver'; import '../types-CDXCKKtg.mjs'; type DidKeyType = 'Bls12381G2' | 'P-256'; interface DidKeyInfo { did: string; verificationMethodId: string; publicKeyMultibase: string; publicKey: Uint8Array; keyType: DidKeyType; } type DidKeyPrivateKeyPair = Bbs2023PrivateKeyPair | EcdsaSd2023PrivateKeyPair; interface GeneratedDidKey { did: string; didKeyPairs: DidKeyPrivateKeyPair; } export type { DidKeyInfo, DidKeyPrivateKeyPair, DidKeyType, GeneratedDidKey };