import { type ComputedRef } from 'vue'; import { useCommonAuthState } from '../use-common-auth-state.js'; import type { SessionData } from '#auth'; type UseAuthStateReturn = { token: ComputedRef; setToken: (value: string | null) => void; clearToken: () => void; } & ReturnType>; export declare const useAuthState: () => UseAuthStateReturn; export {};