import { PopupContext, RedirectContext, NativeContext } from './types'; export declare const STRIVACITY_SDK: import('react').Context; /** * Hook to access the Strivacity SDK context * * @template T Extends either PopupContext, RedirectContext or NativeContext. * * @returns {T} The current Strivacity SDK context. * * @throws {Error} If the context is not provided by an AuthProvider. */ export declare const useStrivacity: () => T;