export declare class JWT { sign(payload: object | string): Promise<{}>; verify(token: string): Promise<{}>; } export declare const Jwt: JWT;