import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface JwtBrand { readonly Jwt: unique symbol; } /** * A valid, Base64-encoded JWT. * * @since 1.0.0 * @category Model */ export declare type Jwt = Branded; /** * @since 1.0.0 * @category Model */ export declare type JwtS = SchemaExt; /** * /^(base64).(base64)(.(base64)){0,1}$/ * * @since 1.0.0 * @category Pattern */ export declare const jwt: PB.Pattern; /** * A valid, Base64-encoded JWT. * * @since 1.0.0 * @category Schema */ export declare const Jwt: JwtS; export {}; //# sourceMappingURL=Jwt.d.ts.map