/** * CLI commands for the Phase 4 versioned graph store. * * Read-only surface so far: `codragraph log`, `codragraph branch list`, * `codragraph diff `. The mutating commands (`commit`, * `branch `, `checkout`) are scoped for Phase 4.5 — `commit` and * branch creation already happen implicitly inside `codragraph analyze`, * so the read-only commands are enough to inspect what landed. */ import { DEFAULT_BRANCH } from '@codragraph/graphstore'; export declare const logCommand: (opts?: { limit?: string; }) => Promise; export declare const branchListCommand: () => Promise; export declare const diffCommand: (from: string, to: string, opts?: { json?: boolean; }) => Promise; export declare const commitCommand: (opts?: { message?: string; }) => Promise; export declare const branchCreateCommand: (name: string, opts?: { from?: string; }) => Promise; export declare const checkoutCommand: (target: string, opts?: { materialize?: boolean; }) => Promise; export declare const materializeCommand: (target: string, opts: { into: string; }) => Promise; export declare const blameCommand: (symbolId: string, opts?: { table?: string; limit?: string; }) => Promise; export declare const branchDeleteCommand: (name: string) => Promise; export declare const mergeCommand: (target: string, opts?: { message?: string; }) => Promise; export declare const gcCommand: (opts?: { dryRun?: boolean; }) => Promise; export declare const diffSemanticCommand: (from: string, to: string, opts?: { json?: boolean; }) => Promise; export { DEFAULT_BRANCH };