import { Strategy } from 'passport-local'; import { IUser } from '@energyweb/origin-backend-core'; import { AuthService } from './auth.service'; declare const LocalStrategy_base: new (...args: any[]) => Strategy; export declare class LocalStrategy extends LocalStrategy_base { private readonly authService; constructor(authService: AuthService); validate(email: string, password: string): Promise; } export {};