declare function isPrimitive(value: unknown): value is bigint | boolean | number | string | null | undefined;
export { isPrimitive };
