import { ReactElement } from 'react'; declare type AuthenticationProps = Readonly<{ authenticated?: boolean; desiredPermission?: string; redirectPath?: string; loginPath?: string; deniedText?: string; children?: ReactElement; }>; export default function Authentication({ authenticated, desiredPermission, redirectPath, loginPath, deniedText, children, }: AuthenticationProps): JSX.Element | null; export {};