import { Strategy } from 'passport-jwt'; import type { WXJwtPayload } from './interfaces'; declare const WXJwtStrategy_base: new (...args: any[]) => Strategy; export declare class WXJwtStrategy extends WXJwtStrategy_base { constructor(); validate(payload: WXJwtPayload): Promise; } export {};