import type { InteractionNode } from '@heap/heap-javascript-bridge-support'; import { CaptureSettings } from '../core'; import { VirtualDOMComponent } from './types'; /** * Builds an array of InteractionNode objects representing the ancestry of the provided node. * * @param node - The node to build the ancestry for. * @param settings - The capture settings to use. * @returns An array of InteractionNode objects representing the ancestry of the provided node. */ export declare const buildInteractionNodeAncestry: (node: VirtualDOMComponent, settings: CaptureSettings) => Array;