import React from "react"; import { UserContextProps } from "../types/types"; export declare const UserContext: React.Context; type Props = { client: any; children: React.ReactNode; }; declare const UserProvider: ({ children, client }: Props) => React.JSX.Element; export default UserProvider;