import type { Agent } from "@atproto/api"; export interface AuthenticatedUser { did: string; handle: string; pdsUrl: string; agent: Agent; } export type Variables = { user?: AuthenticatedUser; };