import { type Rule } from "../rule.js"; /** Expansion takes no parameters: the location says it all. */ export interface ExpandPowerParams { } /** * Unroll a literal power into repeated multiplication: * x^3 ~> x·x·x * The original base keeps its identity as the first factor (the clones * visually peel out of it). Exactly solution-preserving — no assumptions. * The inverse is combine-like-factors, applied pairwise. */ export declare const expandPower: Rule; //# sourceMappingURL=expandPower.d.ts.map