import type { Commit } from './types.js'; export interface ReadCommitsOptions { since?: string; limit?: number; } export declare function readCommits(repoPath: string, opts?: ReadCommitsOptions): Promise; export declare function isGitRepo(path: string): Promise;