/** Marker value written to the generated top INDEX's `generated-by` field — * the wipe guard: `deps` only ever deletes a deps/ dir whose INDEX carries * this marker. */ export declare const DEPS_GENERATED_MARKER = "crtr sys sync deps"; /** Row shape structurally compatible with sync.ts's ImportResult. */ interface DepsRow { source: string; target: string; name: string; scope: 'project'; status: 'imported' | 'would-import' | 'skipped' | 'excluded'; reason?: string; } export declare function runDepsSync(opts: { sourceArg?: string; dryRun: boolean; }): DepsRow[]; export declare const sysSyncDepsLeaf: import("../../core/command.js").LeafDef; export {};