import { EnvironmentService } from '../../../common_services/config/envService';
import { IJwtLib } from './iJwtLib';
export default class JwtLib implements IJwtLib {
    private readonly envService;
    client: any;
    constructor(envService: EnvironmentService);
    getKey: (header: any, callback: (arg0: any, arg1: any) => void) => void;
    decodeJwt: (token: string) => Promise<unknown>;
}
