/** biome-ignore-all lint/suspicious/noConsole: Console output is intentional in CLI */ import { type SessionState } from '../session/state.js'; export interface RenderSessionDiffOptions { /** CLI command shown in footer hint (default: cms-edit save) */ saveCommand?: string; /** CLI command shown in footer hint (default: cms-edit discard) */ discardCommand?: string; /** Filter to one entry ref (tree sessions) */ fieldRef?: string; /** Filter to one field id when fieldRef is set */ fieldId?: string; } export declare function renderSessionDiff(session: SessionState, options?: RenderSessionDiffOptions): void; //# sourceMappingURL=session-diff.d.ts.map