import { type Did } from './did.ts'; import { type Handle } from './handle.ts'; /** * represents an account's identifier, either a {@link Did} or a * {@link Handle} */ export type ActorIdentifier = Did | Handle; export declare const isActorIdentifier: (input: unknown) => input is ActorIdentifier; //# sourceMappingURL=at-identifier.d.ts.map