/**
 * The symbol to define a unique name for the schema type
 */
export declare const UNIQUE_NAME: unique symbol;
/**
 * The symbol to check if a value is of the given schema
 * type
 */
export declare const IS_OF_TYPE: unique symbol;
/**
 * The symbol for the compile method
 */
export declare const PARSE: unique symbol;
/**
 * The symbol for the opaque input type
 */
export declare const ITYPE: unique symbol;
/**
 * The symbol for the opaque type
 */
export declare const OTYPE: unique symbol;
/**
 * The symbol for the camelcase opaque type
 */
export declare const COTYPE: unique symbol;
/**
 * The symbol to generate a validation rule from rule builder
 */
export declare const VALIDATION: unique symbol;
/**
 * The symbol for the subtype of a literal field
 */
export declare const SUBTYPE: unique symbol;
