/** * Checks if the given value is a primitive or not. Does not type guard. For type guarding, use the * `check.isPrimitive` guard from `@augment-vir/assert`. * * @category Type * @category Object * @category Package : @augment-vir/common * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common) */ export declare function isPrimitive(this: void, value: unknown): boolean;