/**
 * 校验是否是对象
 */
declare function isObject(val: unknown): val is Record<string, any>;

export { isObject };
