/**
* Check to see if an object is a primitive
*
* @param input object to test
* @returns true, if the object is a c
*/exportdeclarefunctionisPrimitive(input: unknown): input is null | undefined | string | number | bigint | boolean | symbol;
exportdefault isPrimitive;