import { type Lockfile } from '../utils/lockfile.ts'; /** Load agenthood.lock and resolve which members a command should act on. * The CLI target and every lockfile key are validated against * MEMBER_NAME_RE before they can become git pathspecs; lockfile keys are * attacker-influenced (cloned repos), so hostile ones are warned about * (never echoed raw) instead of acted on. Exits 1 on any failure. */ export declare function loadLockTargets(cwd: string, target: string | undefined, missingHint: string): { lock: Lockfile; members: string[]; }; //# sourceMappingURL=lockTargets.d.ts.map