export type Primitive = string | number | boolean | bigint;
export declare function isPrimitive(value: unknown): value is Primitive;
