import { type KeyObject } from 'node:crypto'; type IssuerIdentity = { did: string; privateKey: KeyObject; publicKey: KeyObject; publicKeyBase64: string; publicKeyMultibase: string; }; export declare function getDirectoryIssuerIdentity(): IssuerIdentity; export declare function getDirectoryIssuerDid(): string; export declare function getDirectoryIssuerPublicKeyBase64(): string; export declare function getDirectoryIssuerPublicKeyMultibase(): string; export declare function getDirectoryIssuerPrivateKey(): KeyObject; export {};