import { ErrorPayload } from '@nhost/nhost-js'; import { ToRefs } from 'vue'; /** * Use `useAuthenticationStatus` to get the authentication status for the user. * * @example * ```tsx * const { isAuthenticated, isLoading } = useAuthenticationStatus(); * ``` */ export declare const useAuthenticationStatus: () => ToRefs<{ isAuthenticated: boolean; isLoading: boolean; error: ErrorPayload | null; isError: boolean; connectionAttempts: number; }>; //# sourceMappingURL=useAuthenticationStatus.d.ts.map