/** * Render read tool output with line numbers, matching the edit tool's visual style. * * The diff tool shows line numbers as: ` ${lineNum} content` * This component applies the same pattern to plain file reads. */ export interface ReadOutputOptions { /** Starting line number (1-indexed). Default: 1 */ startLine?: number; /** Whether to apply syntax highlighting. Default: false */ highlight?: boolean; } /** * Render file content with line numbers. * * @param content - The file content string * @param options - Rendering options * @returns Array of styled lines */ export declare function renderReadOutput(content: string, options?: ReadOutputOptions): string[]; //# sourceMappingURL=read-output.d.ts.map