/** * Resolves the absolute path to a given invalidation path * @param {array} ancestorsPathParts - e.g. "user.contacts[0].type" => ["user", "contacts[0]", "type"] * @param {*} invalidationPath - the invalidation path * @returns {string} the absolute path */ export default function getAbsolutePath(ancestorsPathParts: string[], invalidationPath: any): string;