/**
 *
 * @param {object} object
 * @param {string} path separated with forward slash "/"
 * @param {function} [missingPropertyHandler] Allows custom handling of missing properties
 * @returns {*}
 * @throws {Error} if a path can not be resolved
 */
export function resolvePath(object: object, path: string, missingPropertyHandler?: Function): any;
//# sourceMappingURL=resolvePath.d.ts.map