import { Strategy } from 'passport-jwt';
import { ConfigService } from '@nestjs/config';
import { AuthService } from './auth.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 authService;
    constructor(configService: ConfigService, authService: AuthService);
    validate(payload: any): Promise<{
        id: string;
        name: string;
        email: string;
        phone: string | null;
        walletAddress: string | null;
        status: string;
        subscriptionStatus: string;
        subscriptionPlan: string;
        onboardingStep: string;
        selectedPlan: string | null;
        trialEnd: Date | null;
        latitude: number | null;
        longitude: number | null;
        createdAt: Date;
    } | null>;
}
export {};
