import ParseContext from './ParseContext';
/**
 * Given the ranges of two operands, determine from the token list whether there
 * is a real '+' operator between them. A plus operation without an actual '+'
 * operator is an implicit string interpolation operation.
 */
export default function isPlusTokenBetweenRanges(leftRange: [number, number], rightRange: [number, number], context: ParseContext): boolean;
