import { type ReactNode } from "react"; import { type AutomationsScope, type IUserContextValue } from "./types.js"; interface IUserProviderProps { children: ReactNode; scope: AutomationsScope; } export declare function UserProvider({ children, scope }: IUserProviderProps): import("react/jsx-runtime").JSX.Element; export declare const useUser: () => IUserContextValue; export {}; //# sourceMappingURL=UserContext.d.ts.map