/** * Parse author-declared feature.sutra.md contracts. * Candidate intent only — not runtime verification. */ import type { SutraContract, SutraIssue } from "./types.js"; export declare function loadContracts(repoRoot: string): { contracts: SutraContract[]; issues: SutraIssue[]; };