import type { TName } from '../base/TBase.js';
import { TString } from '../base/TString.js';
import type { JSONSchemaType } from '../targets/json-schema.js';
import type { HTMLInputType } from '../targets/web.js';
import type { Validation } from '../Validation.js';
export type JWT = string;
export declare class TJWT extends TString<JWT> {
    tName(): TName;
    example(): JWT;
    htmlInputType(): HTMLInputType;
    jsonSchemaType(): JSONSchemaType;
    isSensitive(): boolean;
    validate(): Validation;
}
