import type { Context } from 'react';
import TokenObject from './RxTokenObject';
declare const AuthKitContext: Context<TokenObject<unknown>>;
/**
 *
 * @internal
 * @returns TokenObject from the context
 *
 * React Context consumer to globally hold the
 * TokenObject instance in the application.
 *
 */
export declare function useReactAuthKit(): TokenObject<unknown>;
export default AuthKitContext;
