/**
 * Check if value is primitive and not nullable
 *
 * @param val Value to check
 * @returns true if value is primitive
 */
declare const isPrimitive: (val: any) => boolean;
export default isPrimitive;
