import { IAppJwtConfig } from "../interfaces"; export declare class JwtService { protected secretKey: string; constructor(config: IAppJwtConfig); getToken(payload: any): string; }