/** * v1.3.2 §10 — `solosquad adopt `. Currently dry-run only: scans the * repo, validates each asset (validate-then-adopt), and prints what *would* be * adopted + collisions. Actual writes (into the org layer, namespaced) are a * follow-up — the dry-run is the safe, confirm-first surface. */ export interface AdoptOpts { /** Reserved for the future write path; today every run is a dry-run. */ apply?: boolean; /** §10.3 — escalate ambiguous (heuristic-`default`) agents to the LLM for team/tier mapping. */ classify?: boolean; } export declare function adoptCommand(repoInput: string | undefined, opts: AdoptOpts): Promise;