import { IdentityDid, PublicKey } from '@dxos/keys'; /** * Identity DIDs are generated by creating a keypair, and then taking the first 20 bytes of the SHA-256 hash of the public key and encoding them to multibase RFC4648 base-32 format (prefixed with B, see Multibase Table). * Inspired by how ethereum addresses are derived. */ export declare const createDidFromIdentityKey: (identityKey: PublicKey) => Promise; //# sourceMappingURL=did.d.ts.map