import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface HexadecimalBrand { readonly Hexadecimal: unique symbol; } /** * A string of hexadecimal characters. * * @since 1.0.0 * @category Model */ export declare type Hexadecimal = Branded; /** * @since 1.0.0 * @category Model */ export declare type HexadecimalS = SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const hexadecimal: PB.Pattern; /** * A string of hexadecimal characters. * * @since 1.0.0 * @category Schema */ export declare const Hexadecimal: HexadecimalS; export {}; //# sourceMappingURL=Hexadecimal.d.ts.map