import type { Refresh } from '../../types.js'; import { useAuth as useLocalAuth } from '../local/use-auth.js'; import { useAuthState } from './use-auth-state.js'; /** * 刷新 token */ declare const refresh: Refresh>; type UseAuthReturn = ReturnType & ReturnType & { refresh: typeof refresh; }; export declare const useAuth: () => UseAuthReturn; export {};