import { Primitive } from '../types'; /** * Type guard to check if a value is a primitive type. * * @param {unknown} value - The value to check * @returns {boolean} True if the value is a primitive, false otherwise * * @example * isPrimitive("hello") // returns true * isPrimitive(42) // returns true * isPrimitive(true) // returns true * isPrimitive(null) // returns true * isPrimitive({}) // returns false * isPrimitive([]) // returns false */ export declare function isPrimitive(value: unknown): value is Primitive;