/** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ type Primitive = string | number | symbol | bigint | boolean | null | undefined; declare function isPrimitive(value: unknown): value is Primitive; export { type Primitive, isPrimitive };