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