import { Strategy } from 'passport-jwt';
import { ConfigService } from '@nestjs/config';
import { StudentsService } from '../../students/students.service';
import { TeachersService } from '../../teachers/teachers.service';
declare const JwtStrategy_base: new (...args: [opt: import("passport-jwt").StrategyOptionsWithRequest] | [opt: import("passport-jwt").StrategyOptionsWithoutRequest]) => Strategy & {
    validate(...args: any[]): unknown;
};
export declare class JwtStrategy extends JwtStrategy_base {
    private readonly configService;
    private readonly studentsService;
    private readonly teachersService;
    constructor(configService: ConfigService, studentsService: StudentsService, teachersService: TeachersService);
    validate(payload: any): Promise<{
        id: any;
        email: any;
        role: any;
    }>;
}
export {};
