import { BasicStrategy as Strategy } from 'passport-http'; import { AuthService } from '../auth.service'; declare const BasicStrategy_base: new (...args: [] | [options: import("passport-http").BasicStrategyOptions] | [options: import("passport-http").BasicStrategyOptions]) => Strategy & { validate(...args: any[]): unknown; }; export declare class BasicStrategy extends BasicStrategy_base { private readonly authService; constructor(authService: AuthService); validate(req: any, username: string, password: string): Promise; } export {};