import { Strategy } from "passport-jwt";
import { JwtPayload } from "jsonwebtoken";
declare const NestAuthJwtStrategy_base: new (...args: [opt: import("passport-jwt").StrategyOptionsWithRequest] | [opt: import("passport-jwt").StrategyOptionsWithoutRequest]) => Strategy & {
    validate(...args: any[]): unknown;
};
export declare class NestAuthJwtStrategy extends NestAuthJwtStrategy_base {
    constructor(jwtSecret: string);
    validate(payload: JwtPayload): Promise<Record<string, any>>;
}
export {};
