import type Expression from "../types/expression";
import type Factory from "../types/fatctory";
import type ObservablePath from "../types/observable-path";
import type Pattern from "../types/pattern.js";
export default function loopFactory(left: Pattern, operator: "in" | "of", right: Expression, observables: ObservablePath[], factory: Factory): Factory;
