/**
 * @packageDocumentation
 * @module AuthContext
 */
/// <reference types="react" />
import { AuthContextProviderProps } from './types';
/**
 * Auth Context is used to access context in the authentication workflow
 */
export declare const AuthContext: import("react").Context<AuthContextProviderProps | null>;
