/**
 * Status output formatter
 */
interface StatusData {
    total_bullets?: number;
    by_section?: Record<string, number>;
    top_helpful?: Array<{
        content: string;
        helpful: number;
    }>;
    top_harmful?: Array<{
        content: string;
        harmful: number;
    }>;
}
/**
 * Format status data for human-readable output
 */
export declare function formatStatus(status: StatusData, projectId: string): void;
/**
 * Format a progress bar
 */
export declare function formatProgressBar(current: number, total: number, width?: number): string;
export {};
//# sourceMappingURL=status-formatter.d.ts.map