import React from "react"; /** * RTL doesn't let you search directly though a component because it only considers what is rendered. because of this we can either apply a test id 🤮 * @param container * @param IconComponent * @returns an array of all matching elements within that test container */ declare const findSVGs: (container: HTMLElement, IconComponent: React.ElementType) => NodeListOf; export default findSVGs;