import type { Dictionary } from '@sdkset/types'; /** * 返回一个函数,该函数返回指定检索路径属性给定对象的值(先对象后路径),`property`的反函数。 * * @example * const stooge = { name: 'moe' } * propertyOf(stooge)('name') * => 'moe' * * @param object 给定对象 */ export declare function propertyOf(object: Dictionary): (path: number | string | (number | string)[]) => any;