import { Strategy, VerifyCallback } from 'passport-jwt'; import { Strategy as PassportStrategy } from 'passport-strategy'; import { JwtStrategyOptionsInterface } from './interfaces/jwt-strategy-options.interface'; export declare class JwtStrategy extends PassportStrategy { private options; private verify; constructor(options: JwtStrategyOptionsInterface, verify: VerifyCallback); authenticate(...args: Parameters): void; private verifyTokenCallback; private isVerifiedCallback; } //# sourceMappingURL=jwt.strategy.d.ts.map