import { User, GamePassConfig } from '../types'; export declare const useAuth: (config?: Partial) => { user: User | null; isAuthenticated: boolean; signOut: () => void; handleSuccess: (userData: User) => void; };