/** * Colour a diff body by its markers, leaving the kind and target headings plain so the shape * of the plan still reads in a terminal with no colour at all. * * Matching on the marker is what keeps the colour out of `core`, where a CLI concern like a * terminal's capabilities may not go: the marker is already the contract that formatDiff and * its tests agree on, so nothing new has to be threaded through the pure layer. */ export declare function colourDiff(lines: string[]): string[]; /** * Colour the `error:`/`warning:` label a finding opens with, and nothing else, so the message * beside it keeps the terminal's own foreground and stays readable on any theme. */ export declare function colourFindings(lines: string[]): string[]; //# sourceMappingURL=style.d.ts.map