import type { AnyObject } from './utils.js'; export interface CommitReference { raw: string; action: string | null; owner: string | null; repository: string | null; issue: string; prefix: string; } export interface CommitNote { title: string; text: string; } export interface CommitKnownProps { type?: string | null; header?: string | null; version?: string | null; hash?: string | null; committerDate?: string | null; references?: CommitReference[] | null; notes: CommitNote[]; revert?: AnyObject | null; body?: string | null; footer?: string | null; } export type TransformedCommit = Commit & { raw?: Commit; }; export interface CommitGroup { title: string; commits: Commit[]; } export interface NoteGroup { title: string; notes: CommitNote[]; } //# sourceMappingURL=commit.d.ts.map