/** Ink renderer for width-safe styled terminal rows. */ import { type ReactElement } from 'react'; import type { StyledLine } from '../render/lines.ts'; /** Render width-safe rows; every child is exactly one terminal row. */ export declare function StyledRows({ lines }: { lines: readonly StyledLine[]; }): ReactElement; /** File-oriented, color-coded unified diff viewport. */