import { type ReactNode } from 'react';
export interface AuthenticatedProps {
    children: ReactNode;
    fallback?: ReactNode;
}
export declare function Authenticated({ children, fallback }: AuthenticatedProps): import("react").FunctionComponentElement<import("react").FragmentProps>;
export interface GuestProps {
    children: ReactNode;
    fallback?: ReactNode;
}
export declare function Guest({ children, fallback }: GuestProps): import("react").FunctionComponentElement<import("react").FragmentProps>;
