/** * Checks if passed argument is an object * @param v - object to check * @returns true, if passed v is of type object, false otherwise */ export declare function isObject(v: any): v is object;