import { UseQueryOptions } from '@tanstack/react-query';
/**
* Restrict access to authenticated users.
* Redirect anonymous users to the login page.
*
* Use it in your custom page components to require
* authentication.
*
* You can set additional `authParams` at will if your authProvider
* requires it.
*
* @example
* import { Admin, CustomRoutes, useAuthenticated } from 'react-admin';
*
* const FooPage = () => {
* const { isPending } = useAuthenticated();
* if (isPending) return null;
* return ;
* }
*
* const customRoutes = [
* } />
* ];
*
* const App = () => (
*
* {customRoutes}
*
* );
*/
export declare const useAuthenticated: ({ params, logoutOnFailure, ...options }?: UseAuthenticatedOptions) => import("./useAuthState").UseAuthStateResult;
export type UseAuthenticatedOptions = Omit & {
params?: ParamsType;
}, 'queryKey' | 'queryFn'> & {
logoutOnFailure?: boolean;
};
//# sourceMappingURL=useAuthenticated.d.ts.map