/** * Compact (single-line) formatter for the morning briefing. * Produces a brief summary suitable for notifications or status bars. */ import type { BriefingResult } from '../modules/types.js'; /** * Format the briefing result as a compact single-line summary. * * Example output: * "\u2600\uFE0F 15\u00B0C | \u{1F4C5} 3 events | \u{1F4F0} 5 headlines | \u2705 2 reminders" */ export declare function formatCompact(result: BriefingResult): string; //# sourceMappingURL=compact.d.ts.map