import type { CommitType } from "../../commit/types"; export interface TrivialChangeResult { isTrivial: true; type: CommitType; summary: string; } export declare function detectTrivialChange(diff: string): TrivialChangeResult | null;