import { WhitespaceJsxTreeResult, WhitespaceMultiplicationNode } from '../types.js'; export type MultiplicationNodeResult = { parent: any | undefined; key: string | undefined; node: WhitespaceMultiplicationNode; }; /** * Finds the immediate multiplication node from the given root (eg no nested multiplication nodes) * TODO: I am sure there is some optimization to be done here * * Maybe there is an optimization here with caching used paths btwn calls */ export declare function findMultiplicationNode(root: WhitespaceJsxTreeResult | WhitespaceMultiplicationNode | (WhitespaceJsxTreeResult | WhitespaceMultiplicationNode)[]): MultiplicationNodeResult | undefined;