/* 0.28.0 */import type { PrimitiveType } from './types';
/** All the types representing numeric values */
export declare const NUMERIC_TYPES: PrimitiveType[];
export declare const COLLECTION_TYPES: PrimitiveType[];
export declare const SCALAR_TYPES: PrimitiveType[];
export declare const VALUE_TYPES: PrimitiveType[];
export declare const EXPRESSION_TYPES: PrimitiveType[];
export declare const PRIMITIVE_TYPES: PrimitiveType[];
export declare function isValidPrimitiveType(s: any): s is PrimitiveType;
