interface FlagStore { userId: string | null; } export declare class FlagContext { private static readonly storage; run(store: FlagStore, callback: () => T): T; getUserId(): string | null; } export {};