import React from 'react'; import { StatsigUser } from 'statsig-js'; export type UpdateUserFunc = React.Dispatch>; export interface TStatsigContext { initialized: boolean; statsigPromise: React.MutableRefObject> | null; userVersion: number; initStarted: boolean; updateUser: UpdateUserFunc; hooksMemoKey: string | null; } /** * The Statsig SDK context used by the StatsigProvider, and consumed by other SDK helper functions */ declare const _default: React.Context; export default _default;