/** * 判断是否为 Object 类型函数 * @category Types * @param obj : 需要判断的数据 * @returns : 返回判断结果布尔值 */ export declare const isObject: (obj: any) => boolean;