import { Logger } from '../../common/services/logger.service'; import { AbstractService } from '../../common/services/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 AuthService extends AbstractService { /** * Logger instance for the class, initialized with `remote-cli` source */ private logger; constructor(loggerBase: Logger); verify(jwtToken: string, publicKeyPath: string, params?: Object): Promise; }