import { Json } from '../types/Json';
import { Value } from "../types/Value";
export declare class Jwt extends Value {
    static of: (a: {
        jwt: string;
    }) => Jwt;
    decode: () => Json;
    toJSON(): Json;
}
