import { C } from "./C"; import { Alpha } from "./Alpha"; import { HexType, Type } from "./HexType"; export declare type RawHEX = C<"x", string>; export declare type OptionalHEX = RawHEX & Partial & HexType; export declare type HEX = RawHEX & Alpha & HexType; export declare const isHex: (c: C) => c is HEX; //# sourceMappingURL=HEX.d.ts.map