import { ReportEntry } from '../types/index.js';
/**
 * Generates a fixed-width formatted string for the report entries section.
 * @param entries An array of ReportEntry objects.
 * @remarks If more than 150 entries are provided, only the first 150 will be included in the output.
 * @returns A string formatted according to the specification, 2700 characters long.
 */
export declare function generateReportEntriesSection(entries: ReportEntry[]): string;
