import React from 'react'; import { UserContextValue } from './interfaces.js'; export declare const UserContext: React.Context; export declare function UserContextProvider({ children }: { children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useUserContext(): UserContextValue;