import type { ArgumentEngine } from "./argument-engine.js"; import type { PremiseEngine } from "./premise-engine.js"; import type { TCorePremiseProfile, TCorePremiseRelationshipAnalysis } from "../types/relationships.js"; /** * Builds a profile of a premise's variable appearances, recording each * variable's side (antecedent/consequent) and polarity (positive/negative). */ export declare function buildPremiseProfile(premise: PremiseEngine): TCorePremiseProfile; /** * Analyzes how every other premise in the argument relates to the focused * premise, classifying each as supporting, contradicting, restricting, * downstream, or unrelated. */ export declare function analyzePremiseRelationships(engine: ArgumentEngine, focusedPremiseId: string): TCorePremiseRelationshipAnalysis; //# sourceMappingURL=relationships.d.ts.map