import { User } from '../types'; export interface UserContextValue { user: User | null; identifier: string | null; } export declare const userContext: { __context__: UserContextValue; };