import type { OAuthSession } from '@atproto/oauth-client-browser'; import type { AtprotoSessionStatus } from '../../../types/index.js'; import { type ComputedRef, type Ref } from 'vue'; export interface UseAtprotoSessionReturn { session: Ref; isLogged: ComputedRef; status: Ref; } /** * Reactive ATProto OAuth session state (client-only). */ export declare function useAtprotoSession(): UseAtprotoSessionReturn;