/** * Store a single commit into ChromaDB + ContextStore. * Called by CLI `git-memory store [commit-ref]`. * * Matches Python store.py exactly: * - Accepts a commit ref (default: HEAD) * - Quick relevance check before creating full indexer * - Returns true if stored, false if skipped * * Exit codes are handled by the CLI (0 = stored, 1 = skipped). */ export declare function storeCommit(commitRef?: string, opts?: { repoPath?: string; userId?: string; force?: boolean; }): Promise; //# sourceMappingURL=store.d.ts.map