/**
 * 判断是否对象
 *
 * @param {object} obj 对象
 * @return {boolean}
 */
declare function isPlainObject(obj: any): boolean;
export default isPlainObject;
