import { JSXElement, JSXFragment } from "estree-jsx"; /** Can be used to run logic if the specific child element exists, or to run logic on the * specified element. */ export declare function getChildJSXElementByName(node: JSXElement | JSXFragment, name: string): JSXElement; /** Can be used to run logic if the specific child elements exist, or to run logic on the * specified elements. */ export declare function getAllChildJSXElementsByName(node: JSXElement | JSXFragment, name: string): JSXElement[]; //# sourceMappingURL=getChildJSXElementByName.d.ts.map