import React from "react"; export declare type AuthenticatedProps = { /** * Content to show if user is not logged in. If undefined, routes to `/` */ fallback?: React.ReactNode; /** * Content to show while checking whether user is logged in */ loading?: React.ReactNode; children: React.ReactNode; }; /** * `` is the component form of {@link https://refine.dev/docs/core/hooks/auth/useAuthenticated `useAuthenticated`}. It internally uses `useAuthenticated` to provide it's functionality. * * @see {@link https://refine.dev/docs/core/components/auth/authenticated ``} component for more details. */ export declare const Authenticated: React.FC; //# sourceMappingURL=index.d.ts.map