import { Strategy } from "passport-jwt"; import { Request } from "express"; import { AuthenticationPayload } from "../services/AuthService"; import { AccountSessionsService } from "../services/AccountSessionsService"; declare const RefreshStrategy_base: new (...args: any[]) => Strategy; export declare class RefreshStrategy extends RefreshStrategy_base { private readonly accountSessionsService; constructor(accountSessionsService: AccountSessionsService); validate(request: Request, payload: Record): Promise; } export {};