import { l } from '@atproto/lex'; import * as ActorDefs from '../../../app/bsky/actor/defs.defs.js'; import * as LabelDefs from '../../../com/atproto/label/defs.defs.js'; declare const $nsid = "chat.bsky.actor.defs"; export { $nsid }; type ProfileViewBasic = { $type?: 'chat.bsky.actor.defs#profileViewBasic'; did: l.DidString; handle: l.HandleString; displayName?: string; avatar?: l.UriString; associated?: ActorDefs.ProfileAssociated; viewer?: ActorDefs.ViewerState; labels?: LabelDefs.Label[]; /** * Set to true when the actor cannot actively participate in conversations */ chatDisabled?: boolean; verification?: ActorDefs.VerificationState; }; export type { ProfileViewBasic }; declare const profileViewBasic: l.TypedObjectSchema<"chat.bsky.actor.defs#profileViewBasic", l.Validator>; export { profileViewBasic }; //# sourceMappingURL=defs.defs.d.ts.map