import { AuthService } from './auth.service'; import { LocalCacheService } from '../../config/cache/local.cache.service'; export declare class AuthController { private readonly localConfigService; private readonly authService; private readonly logger; constructor(localConfigService: LocalCacheService, authService: AuthService); getAuthUrl(req: any, res: any): Promise<{ url: string; }>; callback(req: any, res: any): Promise; }