import React from "react"; import type { PropsWithChildren } from "react"; import type { AuthState } from "../reducers/auth.reducer"; export declare const AuthStateContext: React.Context; export declare const AuthDispatchContext: React.Context | null>; export declare function AuthProvider({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export declare function useAuthState(): AuthState; export declare function useAuthDispatch(): React.Dispatch;