/// import { AuthClient } from './types'; /** * Auth Context props */ export declare type IAuthContextProps = { /** * The single AuthClient of your application. */ authClient?: T; /** * Boolean indicating whenever the AuthClient has been initialized by AuthProvider */ initialized: boolean; }; /** * Create a React context containing an AuthClient instance. * * @param {IAuthContextProps} initialContext initial context value. * * @returns {React.Context} the ReactKeycloak context. */ export declare function createAuthContext(initialContext?: Partial>): React.Context>; export default createAuthContext;