import type { Commit, ParserOptions, SemverLevel } from '@oriflame/conventional-changelog-types'; export interface BumpOptions { parserOpts: Partial; whatBump: (commits: Commit[]) => { level: SemverLevel; reason: string }; }