/** * Verify if the input is an object literal (or class). * @param input The object to verify */ export declare function isObject(input: unknown): input is Record | object; /** * Check whether a value is a primitive * @param input The input to check */ export declare function isPrimitive(input: unknown): input is string | bigint | number | boolean; export declare function isFunction(input: unknown): input is Function; //# sourceMappingURL=types.d.ts.map