declare const primitiveTypes: string[]; type PrimitiveTypes = string | bigint | number | boolean; /** * Check whether a value is a primitive * @param input The input to check */ declare function isPrimitive(input: unknown): input is PrimitiveTypes; export { type PrimitiveTypes, isPrimitive, primitiveTypes };