import type { Ref, ComputedRef } from 'vue'; import type { SessionStatus } from '../types.js'; type UseCommonAuthStateReturn = { loading: Ref; data: Ref; lastRefreshedAt: Ref; status: ComputedRef; }; /** * 公共 auth 状态方法 * * @returns auth 相关状态变量与方法 */ export declare const useCommonAuthState: () => UseCommonAuthStateReturn; export {};