import { Validator } from './interface'; export declare const ANY: Validator; export declare const ANY_OBJECT: Validator; export declare const STRING: Validator; /** * Safe integer */ export declare const INT: Validator; export declare const ANY_INT: Validator; /** * Safe integer greater or equal to 0 */ export declare const NAT: Validator; export declare const BIG_NAT: Validator; export declare const ANY_NAT: Validator; export declare const STRING_NAT: Validator; export declare const STRING_FLOAT: Validator; /** * Hex encoded binary string or natural number */ type Bytes = string; /** * Hex encoded natural number of an arbitrary size */ export declare const QTY: Validator; /** * Hex encoded safe natural number */ export declare const SMALL_QTY: Validator; /** * Hex encoded binary string */ export declare const BYTES: Validator; type Base58Bytes = string; type Base64Bytes = string; /** * Base58 encoded binary string */ export declare const B58: Validator; /** * Base64 encoded binary string */ export declare const B64: Validator; export declare const BOOLEAN: Validator; export {}; //# sourceMappingURL=primitives.d.ts.map