import { JWTResponse } from "./abstract";
export declare class JWT {
    static error: unknown;
    private static jwt;
    private static getConfig;
    static generateToken<P>(payload: P): Promise<JWTResponse>;
    static verifyToken<P>(token: string): Promise<P | false>;
}
