import { ComponentHierarchyTraversalElement } from './types'; /** * Performs in-place filtering of the elements array based on the combined filtering criteria. * * These criteria are used specifically to remove noise from the hierarchy and are distinct from * HeapIgnore filtering. * * @param elements The array to filter. */ export declare const applyFilterCriteria: (elements: Array) => void; /** * Performs in-place filtering of views that are similar to their parents or lack properties and a * meaningful name. * * This should called after properties have been extracted. * * @param elements The array to filter. */ export declare const filterUninterestingElements: (elements: Array) => void;