import { Logger } from '../../common/services/logger.service'; import { AuthService } from './auth.service'; /** * Class allows developers to register custom commands that can be remote executed in a * shell environment. Useful for things like migrations and debugging. */ export declare class AuthServiceMock extends AuthService { constructor(loggerBase: Logger); verify(jwtToken: string, publicKeyPath?: string, params?: Object): Promise; }