export type Primitive = string | number | bigint | boolean | symbol | null | undefined;
export declare const isPrimitive: (v?: unknown) => v is Primitive;
