import React from "react"; export declare type AuthenticatedProps = { fallback?: React.ReactNode; loading?: React.ReactNode; }; /** * `` is the component form of {@link https://refine.dev/docs/api-references/hooks/auth/useAuthenticated `useAuthenticated`}. It internally uses `useAuthenticated` to provide it's functionality. * * @see {@link https://refine.dev/docs/api-references/components/auth/authenticated ``} component for more details. */ export declare const Authenticated: React.FC;