import type { Dictionary } from '@sdkset/types'; /** * 返回一个函数,函数判断给定对象是否匹配`properties`键-值对。 * * @example * const ready = matcher({ selected: true, visible: true }) * filter(list, ready) * => [ ... ] * * @param properties 谓语对象 */ export declare function matcher(properties: V): (object: unknown) => boolean;