export declare type Primitive = undefined | null | boolean | number | string | symbol;
export declare function isPrimitive(input: any): input is Primitive;
