import { Request } from "../http"; export declare const jwt: { /** * Generate a new JWT token for the user */ generate(payload: SignPayloadType, options?: SignOptions): Promise; /** * Verify Current token from request which will be in the `Authorization` header */ verify(data: Request | string): Promise; }; //# sourceMappingURL=jwt.d.ts.map