import { Agent } from '@atproto/api'; /** * Returns a cached AT Protocol agent for the given scope. * * @deprecated Use `useAtprotoAgent` instead (`private` → `authenticated`). */ export declare function useAgent(service: 'private' | 'public' | (string & {}), fetch?: typeof globalThis.fetch): Agent;