import type { Dictionary } from '@sdkset/types'; /** * 返回一个布尔值,判断给定对象是否包含`properties`键-值对。 * * @example * var stooge = {name: 'moe', age: 32} * isMatch(stooge, {age: 32}) * => true * * @param object 给定对象 * @param properties 谓语对象 */ export declare function isMatch(object: unknown, properties: Dictionary): boolean;