import { ReactNode } from "react";
interface AuthContextType {
    user: any;
    login: (userData: any) => void;
    logout: () => void;
}
export declare const AuthProvider: ({ children }: {
    children: ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
export declare const useAuth: () => AuthContextType | null;
export {};
