import { Strategy } from 'passport-jwt'; import { TenantAuthService } from './auth.service'; import type { JwtPayload } from '../core/auth'; declare const OrgJwtStrategy_base: new (...args: any[]) => Strategy; export declare class OrgJwtStrategy extends OrgJwtStrategy_base { private readonly authService; constructor(authService: TenantAuthService); validate(payload: JwtPayload): Promise; } export {};