import { JwtVerifyServiceInterface } from '../interfaces/jwt-verify-service.interface'; import { JwtVerifyTokenServiceInterface } from '../interfaces/jwt-verify-token-service.interface'; export declare class JwtVerifyTokenService implements JwtVerifyTokenServiceInterface { protected readonly jwtAccessService: JwtVerifyServiceInterface; protected readonly jwtRefreshService: JwtVerifyServiceInterface; constructor(jwtAccessService: JwtVerifyServiceInterface, jwtRefreshService: JwtVerifyServiceInterface); accessToken(...args: Parameters): Promise; refreshToken(...args: Parameters): Promise; } //# sourceMappingURL=jwt-verify-token.service.d.ts.map