export declare class JwtHelper { protected static getJwtKey(param?: string): string; static sign(value: any, options?: { expiresIn?: string; jwtKeyParam?: string; }): Promise; static verify(value: any, options?: { jwtKeyParam?: string; }): Promise; static isExpired(token: string): boolean; }