import type { Dictionary } from '@sdkset/types'; /** * 用于`get`、`invoke`、`property`的内部实现。 * * @example * _deepGet({a: {b: {c: {d: 1}}}}, a.b.c.d) * => 1 * * _deepGet({a: {b: {c: {d: 1}}}}, [a, b, c, d]) * => 1 * * @param object 给定对象 * @param path 检索路径 */ export declare function _deepGet(object: V, path: string[]): V | undefined;