/** * Returns an array of nodes coninting all the html comments in the element. * When a searchText is given this is narrowed down to only comments that contian this text * @param rootElem Element to search nto * @param searchText optional string that needs to be in a HTML comment */ export declare function findComments(rootElem: HTMLElement, searchText?: string): any[];