/** * represents a decentralized identifier (DID). */ export type Did = `did:${Method}:${string}`; /** * represents a decentralized identifier with methods supported in atproto */ export type AtprotoDid = Did<'plc' | 'web'>; export type AtprotoAudience = `${AtprotoDid}#${string}`; export declare const isDid: (input: unknown) => input is `did:${string}:${string}`; //# sourceMappingURL=did.d.ts.map