import type { DidDocument, Service } from './types.js'; export type DidArgs = { host: string; aka?: string[]; publicKey: string; service?: Service[]; }; /** * Create a canonical JSON string from the given DID data. The JSON returned * here is stable, so you can use it for things like cryptographic signatures. * * @param {DidArgs} args DID data * @returns {string} */ export declare function json(args: DidArgs): string; export declare function did({ host, aka, publicKey, service, }: DidArgs): DidDocument; //# sourceMappingURL=index.d.ts.map