import { ReactType } from "react"; import { AuthConfig, AuthWrapperDecorator } from "."; export interface InjectedAuthProps { isAuthenticated: boolean; isAuthenticating: boolean; } export interface AuthWrapperConfig extends AuthConfig { FailureComponent?: ReactType; } export default function authWrapper( config: AuthWrapperConfig ): AuthWrapperDecorator;