export interface ObjectPathResult { /** * The last resolved value within the object */ value: any; /** * The path within the object the value was resolved at */ path: string; /** * If the value was a CID, these are the remaining unresolved path segments */ rest: string[]; } export declare function resolveObjectPath(object: any, path: string[]): ObjectPathResult; //# sourceMappingURL=resolve-object-path.d.ts.map