import type { Insight } from './detectors/index.js'; export interface OverviewSummary { filesScanned: number; sessionsScanned: number; totalCostUsdAllTime: number; totalCostUsdLast7Days: number; totalSavingsAvailableUsd: number; } export declare function printHeader(): void; export declare function printOverview(summary: OverviewSummary): void; export declare function printTopInsights(insights: Insight[], isPro?: boolean): void; export declare function printSponsoredInsight(): void; export interface SharePayload { v: 1; t: number; w: number; s: number; n: number; l: Array<{ title: string; save: number; }>; g: string; } export declare function buildShareUrl(payload: SharePayload): string; export declare function printShareBlock(topInsightTitle: string, totalSavingsUsd: number, shareUrl?: string): void; export declare function printProUpsell(): void; export declare function printFooter(installedDomain?: string): void; //# sourceMappingURL=output.d.ts.map